mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
15 lines
316 B
Python
15 lines
316 B
Python
class IsSuperuserException(Exception):
|
|
pass
|
|
|
|
|
|
class SkipPluginException(Exception):
|
|
def __init__(self, info: str, *args: object) -> None:
|
|
super().__init__(*args)
|
|
self.info = info
|
|
|
|
def __str__(self) -> str:
|
|
return self.info
|
|
|
|
def __repr__(self) -> str:
|
|
return self.info
|