mirror of
https://github.com/JJTech0130/pypush.git
synced 2025-01-23 03:38:52 +00:00
31 lines
595 B
Python
31 lines
595 B
Python
|
|
||
|
class GatewayError(Exception):
|
||
|
def __init__(self, reason):
|
||
|
self.reason = reason
|
||
|
|
||
|
def __str__(self):
|
||
|
return self.reason
|
||
|
|
||
|
|
||
|
class GatewayConnectionError(Exception):
|
||
|
def __init__(self, reason):
|
||
|
self.reason = reason
|
||
|
|
||
|
def __str__(self):
|
||
|
return self.reason
|
||
|
|
||
|
|
||
|
class DecodeError(Exception):
|
||
|
def __init__(self, reason):
|
||
|
self.reason = reason
|
||
|
|
||
|
def __str__(self):
|
||
|
return self.reason
|
||
|
|
||
|
|
||
|
class InvalidResponseError(Exception):
|
||
|
def __init__(self, reason):
|
||
|
self.reason = reason
|
||
|
|
||
|
def __str__(self):
|
||
|
return self.reason
|