initial commit

This commit is contained in:
2025-02-27 22:41:38 +01:00
commit abb16938f8
59 changed files with 4169 additions and 0 deletions

23
src/errors/__init__.py Normal file
View File

@@ -0,0 +1,23 @@
class ConnectError(Exception):
def __init__(self, message):
super().__init__(message)
class LoginError(Exception):
def __init__(self, message):
super().__init__(message)
class AccessError(Exception):
def __init__(self, message):
super().__init__(message)
class JSONError(Exception):
def __init__(self, message):
super().__init__(message)
class ResponseError(Exception):
def __init__(self, message):
super().__init__(message)
class ResultError(Exception):
def __init__(self, message):
super().__init__(message)