nonebot2/nonebot/adapters/ding/exception.py

42 lines
741 B
Python
Raw Normal View History

2020-12-03 00:59:32 +08:00
from nonebot.exception import AdapterException
class DingAdapterException(AdapterException):
2020-12-03 12:08:04 +08:00
"""
:说明:
钉钉 Adapter 错误基类
"""
2020-12-03 00:59:32 +08:00
def __init__(self) -> None:
super.__init__("DING")
class ApiError(DingAdapterException):
"""
:说明:
2020-12-03 12:08:04 +08:00
API 请求返回错误信息
2020-12-03 00:59:32 +08:00
"""
def __init__(self, errcode: int, errmsg: str):
self.errcode = errcode
self.errmsg = errmsg
def __repr__(self):
return f"<ApiError errcode={self.errcode} errmsg={self.errmsg}>"
class SessionExpired(DingAdapterException):
2020-12-03 12:08:04 +08:00
"""
:说明:
发消息的 session 已经过期
"""
2020-12-03 00:59:32 +08:00
def __repr__(self) -> str:
return f"<sessionWebhook is Expired>"