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