mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 00:55:07 +08:00
31 lines
636 B
Python
31 lines
636 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
class IgnoredException(Exception):
|
|
"""
|
|
Raised by event_preprocessor indicating that
|
|
the bot should ignore the event
|
|
"""
|
|
|
|
def __init__(self, reason):
|
|
"""
|
|
:param reason: reason to ignore the event
|
|
"""
|
|
self.reason = reason
|
|
|
|
|
|
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
|