zhenxun_bot/zhenxun/builtin_plugins/hooks/auth/exception.py
2025-04-08 17:11:44 +08:00

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