Difficult-Rocket/Difficult_Rocket/api/Exp/__init__.py
2022-05-11 11:11:39 +08:00

47 lines
870 B
Python

# -------------------------------
# Difficult Rocket
# Copyright © 2021-2022 by shenjackyuanjie
# All rights reserved
# -------------------------------
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
from .command import CommandParseError, CommandQuotationMarkError
__all__ = ['TexturesError',
'LanguageError',
'CommandError',
'CommandParseError',
'CommandQuotationMarkError',
'TestError']
class Error(Exception):
"""基础 Exception"""
pass
class TexturesError(Error):
"""材质相关 error"""
pass
class CommandError(Error):
"""命令解析相关 error"""
pass
class LanguageError(Error):
"""语言相关 error"""
pass
class TestError(Error):
"""就像名字一样 用于测试的 error"""
pass