mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-02-17 16:20:05 +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
|