sticker-captcha-bot/pyromod/utils/errors.py
2023-09-11 21:05:50 +08:00

17 lines
350 B
Python

class TimeoutConversationError(Exception):
"""
Occurs when the conversation times out.
"""
def __init__(self):
super().__init__("Response read timed out")
class ListenerCanceled(Exception):
"""
Occurs when the listener is canceled.
"""
def __init__(self):
super().__init__("Listener was canceled")