init version 2

This commit is contained in:
yanyongyu
2020-05-02 20:03:36 +08:00
parent 685f441967
commit 06b7ef2a45
27 changed files with 201 additions and 2520 deletions

8
nonebot/exception.py Normal file
View File

@ -0,0 +1,8 @@
class BlockedException(Exception):
"""Block a message from further handling"""
pass
class RejectedException(Exception):
"""Reject a message and return current handler back"""
pass