shenjack
9fb2f717ea
readme 清理一些无用文件 rename folder awa awa load textures! 删掉了一些没用的东西 hmmm 好耶! 看起来少,实际上多 awa update 1.0! rue ah! 同步libs更新 Update __init__.py merge!
43 lines
731 B
Python
43 lines
731 B
Python
# -------------------------------
|
|
# Difficult Rocket
|
|
# Copyright © 2021 by shenjackyuanjie
|
|
# All rights reserved
|
|
# -------------------------------
|
|
|
|
"""
|
|
writen by shenjackyuanjie
|
|
mail: 3695888@qq.com
|
|
github: @shenjackyuanjie
|
|
gitee: @shenjackyuanjie
|
|
"""
|
|
|
|
__all__ = ['TexturesError',
|
|
'LanguageError',
|
|
'CommandError',
|
|
'TestError']
|
|
|
|
|
|
class Error(Exception):
|
|
"""基础 Exception"""
|
|
pass
|
|
|
|
|
|
class TexturesError(Error):
|
|
"""材质相关 error"""
|
|
pass
|
|
|
|
|
|
class CommandError(Error):
|
|
"""命令解析相关 error"""
|
|
pass
|
|
|
|
|
|
class LanguageError(Error):
|
|
"""lang 文件相关 error"""
|
|
pass
|
|
|
|
|
|
class TestError(Error):
|
|
"""就像名字一样 用于测试的 error"""
|
|
pass
|