sticker-captcha-bot/pyromod/utils/errors.py

20 lines
393 B
Python
Raw Normal View History

2022-07-02 11:44:57 +00:00
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"
)