veretube_bot_lib/veretube_bot/exceptions.py
2026-05-05 00:56:19 +02:00

4 lines
173 B
Python

class BotAPIError(Exception):
def __init__(self, message: str, status_code: int | None = None):
super().__init__(message)
self.status_code = status_code