mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-27 18:45:05 +08:00
14 lines
313 B
Python
14 lines
313 B
Python
class PausedException(Exception):
|
|
"""Block a message from further handling and try to receive a new message"""
|
|
pass
|
|
|
|
|
|
class RejectedException(Exception):
|
|
"""Reject a message and return current handler back"""
|
|
pass
|
|
|
|
|
|
class FinishedException(Exception):
|
|
"""Finish handling a message"""
|
|
pass
|