2021-09-08 23:38:34 +08:00
|
|
|
# -------------------------------
|
|
|
|
# Difficult Rocket
|
2021-12-26 23:06:03 +08:00
|
|
|
# Copyright © 2021-2022 by shenjackyuanjie
|
2021-09-08 23:38:34 +08:00
|
|
|
# All rights reserved
|
|
|
|
# -------------------------------
|
|
|
|
|
2021-09-02 22:47:10 +08:00
|
|
|
"""
|
|
|
|
writen by shenjackyuanjie
|
|
|
|
mail: 3695888@qq.com
|
|
|
|
github: @shenjackyuanjie
|
|
|
|
gitee: @shenjackyuanjie
|
|
|
|
"""
|
|
|
|
|
2022-06-18 17:53:35 +08:00
|
|
|
from Difficult_Rocket.api.Exp.main import Error
|
|
|
|
from Difficult_Rocket.api.Exp.command import CommandError, CommandParseError, CommandQMarkPosError, \
|
|
|
|
CommandQMarkConflict, CommandQMarkMissing, CommandQMarkPreMissing, CommandQMarkSufMissing
|
|
|
|
from Difficult_Rocket.api.Exp.unsupport import NoMoreJson5
|
2021-09-02 22:47:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
class TexturesError(Error):
|
2021-09-22 06:21:48 +08:00
|
|
|
"""材质相关 error"""
|
2021-09-02 22:47:10 +08:00
|
|
|
|
|
|
|
|
2021-09-09 23:54:03 +08:00
|
|
|
class TestError(Error):
|
2021-09-22 06:21:48 +08:00
|
|
|
"""就像名字一样 用于测试的 error"""
|