zhenxun_bot/zhenxun/utils/exception.py

39 lines
398 B
Python
Raw Normal View History

2024-02-04 04:18:54 +08:00
class NotFoundError(Exception):
2024-02-26 03:04:32 +08:00
"""
未发现
"""
2024-02-04 04:18:54 +08:00
pass
2024-02-25 03:18:34 +08:00
class GroupInfoNotFound(Exception):
2024-02-26 03:04:32 +08:00
"""
群组未找到
"""
2024-02-25 03:18:34 +08:00
pass
class EmptyError(Exception):
2024-02-26 03:04:32 +08:00
"""
空错误
"""
2024-02-25 03:18:34 +08:00
pass
class UserAndGroupIsNone(Exception):
2024-02-26 03:04:32 +08:00
"""
用户和群组为空
"""
pass
class InsufficientGold(Exception):
"""
金币不足
"""
2024-02-25 03:18:34 +08:00
pass