zhenxun_bot/zhenxun/builtin_plugins/platform/qq/exception.py

12 lines
221 B
Python
Raw Normal View History

2024-09-21 23:07:00 +08:00
class ForceAddGroupError(Exception):
"""
强制拉群
"""
def __init__(self, info: str):
super().__init__(self)
self._info = info
def get_info(self) -> str:
return self._info