Difficult-Rocket/Difficult_Rocket/api/exception/unsupport.py

31 lines
578 B
Python
Raw Normal View History

# -------------------------------
# Difficult Rocket
2023-01-20 14:08:12 +08:00
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
# All rights reserved
# -------------------------------
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
2023-03-02 13:15:29 +08:00
from Difficult_Rocket.exception.unsupport import (
NoMoreJson5,
Nope418ImATeapot,
ThinkError,
BrainError,
BigBrainError,
2023-12-03 16:54:07 +08:00
GrammarError,
2023-03-02 13:15:29 +08:00
)
2022-06-29 13:45:25 +08:00
__all__ = [
2023-12-03 16:54:07 +08:00
"NoMoreJson5",
"Nope418ImATeapot",
"ThinkError",
"BrainError",
"BigBrainError",
"GrammarError",
2022-06-29 13:45:25 +08:00
]