mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 06:12:53 +08:00
55 lines
567 B
Python
55 lines
567 B
Python
class NotFoundError(Exception):
|
|
"""
|
|
未发现
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class GroupInfoNotFound(Exception):
|
|
"""
|
|
群组未找到
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class EmptyError(Exception):
|
|
"""
|
|
空错误
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class UserAndGroupIsNone(Exception):
|
|
"""
|
|
用户和群组为空
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class InsufficientGold(Exception):
|
|
"""
|
|
金币不足
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class NotFindSuperuser(Exception):
|
|
"""
|
|
未找到超级用户
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class GoodsNotFound(Exception):
|
|
"""
|
|
或找到道具
|
|
"""
|
|
|
|
pass
|