🏗️ change exception structure

This commit is contained in:
yanyongyu
2020-12-03 15:07:03 +08:00
parent 8f89e0f26e
commit 9658e446e5
6 changed files with 59 additions and 45 deletions

View File

@ -0,0 +1,29 @@
from nonebot.exception import AdapterException, ActionFailed
class CQHTTPAdapterException(AdapterException):
def __init__(self):
super().__init__("cqhttp")
class ApiError(CQHTTPAdapterException, ActionFailed):
"""
:说明:
API 请求返回错误信息。
:参数:
* ``retcode: Optional[int]``: 错误码
"""
def __init__(self, retcode: Optional[int] = None):
super().__init__()
self.retcode = retcode
def __repr__(self):
return f"<ActionFailed retcode={self.retcode}>"
def __str__(self):
return self.__repr__()