veretube_bot_lib/veretube_bot/exceptions.py

5 lines
173 B
Python
Raw Normal View History

2026-05-05 00:56:19 +02:00
class BotAPIError(Exception):
def __init__(self, message: str, status_code: int | None = None):
super().__init__(message)
self.status_code = status_code