mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 00:55:07 +08:00
9 lines
198 B
Python
9 lines
198 B
Python
|
class BlockedException(Exception):
|
||
|
"""Block a message from further handling"""
|
||
|
pass
|
||
|
|
||
|
|
||
|
class RejectedException(Exception):
|
||
|
"""Reject a message and return current handler back"""
|
||
|
pass
|