a929f68ad4
- Truly fixes PMX Import lol, i messed up completely - Updated MMD Tools to use Cats One
13 lines
338 B
Python
13 lines
338 B
Python
# Copyright 2016 MMD Tools authors
|
|
# This file is part of MMD Tools.
|
|
|
|
# Module for custom exceptions
|
|
|
|
|
|
class MaterialNotFoundError(KeyError):
|
|
"""Exception raised when a material is not found in the scene"""
|
|
|
|
def __init__(self, *args: object) -> None:
|
|
"""Initialize MaterialNotFoundError"""
|
|
super().__init__(*args)
|