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

27 lines
530 B
Python

# -------------------------------
# Difficult Rocket
# Copyright © 2021-2022 by shenjackyuanjie
# All rights reserved
# -------------------------------
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
from . import CommandError
class CommandParseError(CommandError):
"""命令解析时出现错误"""
pass
class CommandQuotationMarkError(CommandParseError):
"""命令中,引号位置不正确
例如: /command "aabcc "awdawd
"""
pass