Files
Avatar-Toolkit/core/mmd/core/exceptions.py
T
Yusarina a929f68ad4 Holy shit this was a pain
- Truly fixes PMX Import lol, i messed up completely
- Updated MMD Tools to use Cats One
2025-11-19 06:35:06 +00:00

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)