nonebot2/nonebot/exception.py

184 lines
3.5 KiB
Python
Raw Normal View History

2020-08-20 15:07:05 +08:00
"""
异常
====
下列文档中的异常是所有 NoneBot 运行时可能会抛出的
这些异常并非所有需要用户处理 NoneBot 内部运行时被捕获并进行对应操作
"""
2020-06-30 10:13:58 +08:00
2020-12-03 13:22:12 +08:00
class NoneBotException(Exception):
"""
:说明:
所有 NoneBot 发生的异常基类
"""
pass
class IgnoredException(NoneBotException):
2020-07-25 12:28:30 +08:00
"""
2020-08-20 15:07:05 +08:00
:说明:
指示 NoneBot 应该忽略该事件可由 PreProcessor 抛出
:参数:
* ``reason``: 忽略事件的原因
2020-07-25 12:28:30 +08:00
"""
def __init__(self, reason):
self.reason = reason
2020-08-20 15:07:05 +08:00
def __repr__(self):
return f"<IgnoredException, reason={self.reason}>"
def __str__(self):
return self.__repr__()
2020-07-25 12:28:30 +08:00
2021-02-02 11:59:14 +08:00
class ParserExit(NoneBotException):
"""
:说明:
``shell command`` 处理消息失败时返回的异常
:参数:
* ``status``
* ``message``
"""
def __init__(self, status=0, message=None):
self.status = status
self.message = message
2020-12-03 13:22:12 +08:00
class PausedException(NoneBotException):
2020-08-20 15:07:05 +08:00
"""
:说明:
指示 NoneBot 结束当前 ``Handler`` 并等待下一条消息后继续下一个 ``Handler``
2020-08-20 15:07:05 +08:00
可用于用户输入新信息
:用法:
可以在 ``Handler`` 中通过 ``Matcher.pause()`` 抛出
2020-08-20 15:07:05 +08:00
"""
2020-05-02 20:03:36 +08:00
pass
2020-12-03 13:22:12 +08:00
class RejectedException(NoneBotException):
2020-08-20 15:07:05 +08:00
"""
:说明:
指示 NoneBot 结束当前 ``Handler`` 并等待下一条消息后重新运行当前 ``Handler``
2020-08-20 15:07:05 +08:00
可用于用户重新输入
:用法:
可以在 ``Handler`` 中通过 ``Matcher.reject()`` 抛出
2020-08-20 15:07:05 +08:00
"""
2020-05-02 20:03:36 +08:00
pass
2020-05-05 16:11:05 +08:00
2020-12-03 13:22:12 +08:00
class FinishedException(NoneBotException):
2020-08-20 15:07:05 +08:00
"""
:说明:
指示 NoneBot 结束当前 ``Handler`` 且后续 ``Handler`` 不再被运行
2020-08-20 15:07:05 +08:00
可用于结束用户会话
:用法:
可以在 ``Handler`` 中通过 ``Matcher.finish()`` 抛出
"""
pass
2020-12-03 13:22:12 +08:00
class StopPropagation(NoneBotException):
"""
:说明:
指示 NoneBot 终止事件向下层传播
:用法:
``Matcher.block == True`` 时抛出
2020-08-20 15:07:05 +08:00
"""
2020-05-05 16:11:05 +08:00
pass
2020-08-01 22:03:40 +08:00
2020-12-03 13:22:12 +08:00
class RequestDenied(NoneBotException):
"""
:说明:
Bot 连接请求不合法
:参数:
* ``status_code: int``: HTTP 状态码
* ``reason: str``: 拒绝原因
"""
def __init__(self, status_code: int, reason: str):
self.status_code = status_code
self.reason = reason
def __repr__(self):
return f"<RequestDenied, status_code={self.status_code}, reason={self.reason}>"
def __str__(self):
return self.__repr__()
2020-12-03 13:22:12 +08:00
class AdapterException(NoneBotException):
"""
:说明:
代表 ``Adapter`` 抛出的异常所有的 ``Adapter`` 都要在内部继承自这个 ``Exception``
:参数:
* ``adapter_name: str``: 标识 adapter
"""
def __init__(self, adapter_name: str) -> None:
self.adapter_name = adapter_name
2020-12-09 14:39:25 +08:00
class NoLogException(Exception):
"""
:说明:
指示 NoneBot 对当前 ``Event`` 进行处理但不显示 Log 信息可在 ``get_log_string`` 时抛出
"""
pass
2020-12-03 13:22:12 +08:00
class ApiNotAvailable(AdapterException):
2020-08-20 15:07:05 +08:00
"""
:说明:
API 连接不可用时抛出
"""
2020-08-01 22:03:40 +08:00
pass
2020-08-13 15:23:04 +08:00
2020-12-03 13:22:12 +08:00
class NetworkError(AdapterException):
2020-08-20 15:07:05 +08:00
"""
:说明:
在网络出现问题时抛出: API 请求地址不正确, API 请求无返回或返回状态非正常等
"""
2020-08-13 15:23:04 +08:00
pass
2020-12-03 13:22:12 +08:00
class ActionFailed(AdapterException):
2020-08-20 15:07:05 +08:00
"""
:说明:
API 请求成功返回数据 API 操作失败
"""
pass