11 lines
156 B
Python
11 lines
156 B
Python
|
#-*- coding: UTF-8 -*-
|
||
|
|
||
|
"""
|
||
|
All possible errors.
|
||
|
"""
|
||
|
|
||
|
class AssimpError(BaseException):
|
||
|
"""
|
||
|
If an internal error occures.
|
||
|
"""
|
||
|
pass
|