25 lines
533 B
Python
25 lines
533 B
Python
# -------------------------------
|
|
# Difficult Rocket
|
|
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
|
|
# All rights reserved
|
|
# -------------------------------
|
|
|
|
"""
|
|
writen by shenjackyuanjie
|
|
mail: 3695888@qq.com
|
|
github: @shenjackyuanjie
|
|
gitee: @shenjackyuanjie
|
|
"""
|
|
|
|
from Difficult_Rocket.exception.command import *
|
|
|
|
__all__ = [
|
|
"CommandError",
|
|
"CommandParseError",
|
|
"CommandQMarkMissing",
|
|
"CommandQMarkPosError",
|
|
"CommandQMarkConflict",
|
|
"CommandQMarkSufMissing",
|
|
"CommandQMarkPreMissing"
|
|
]
|