35 lines
805 B
Python
35 lines
805 B
Python
![]() |
class ClientException(Exception):
|
||
|
def __init__(self, code: int, msg: str):
|
||
|
super().__init__(msg)
|
||
|
self.code = code
|
||
|
|
||
|
def __str__(self):
|
||
|
return f"{self.code}: {super().__str__()}"
|
||
|
|
||
|
|
||
|
class ServerException(Exception):
|
||
|
def __init__(self, code: int, msg: str):
|
||
|
super().__init__(msg)
|
||
|
self.code = code
|
||
|
|
||
|
def __str__(self):
|
||
|
return f"{self.code}: {super().__str__()}"
|
||
|
|
||
|
|
||
|
class HeaderNotFoundException(Exception):
|
||
|
def __init__(self, key: str):
|
||
|
self.key = key
|
||
|
|
||
|
def __str__(self):
|
||
|
return f"{self.key} not found"
|
||
|
|
||
|
|
||
|
class ConnectionClosedException(Exception):
|
||
|
def __init__(self, msg: str):
|
||
|
super().__init__(msg)
|
||
|
|
||
|
|
||
|
class ServerUnreachableException(Exception):
|
||
|
def __init__(self, msg: str):
|
||
|
super().__init__(msg)
|