mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
12 lines
221 B
Python
12 lines
221 B
Python
|
|
class ForceAddGroupError(Exception):
|
||
|
|
"""
|
||
|
|
强制拉群
|
||
|
|
"""
|
||
|
|
|
||
|
|
def __init__(self, info: str):
|
||
|
|
super().__init__(self)
|
||
|
|
self._info = info
|
||
|
|
|
||
|
|
def get_info(self) -> str:
|
||
|
|
return self._info
|