123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- from openleadr.enums import STATUS_CODES
- class ProtocolError(Exception):
- pass
- class FingerprintMismatch(Exception):
- pass
- class HTTPError(Exception):
- def __init__(self, status=500, description=None):
- super().__init__()
- self.response_code = status
- self.response_description = description
- class OutOfSequenceError(ProtocolError):
- def __init__(self, description='OUT OF SEQUENCE'):
- super().__init__()
- self.response_code = STATUS_CODES.OUT_OF_SEQUENCE
- self.response_description = description
- class NotAllowedError(ProtocolError):
- def __init__(self, description='NOT ALLOWED'):
- super().__init__()
- self.response_code = STATUS_CODES.NOT_ALLOWED
- self.response_description = description
- class InvalidIdError(ProtocolError):
- def __init__(self, description='INVALID ID'):
- super().__init__()
- self.response_code = STATUS_CODES.INVALID_ID
- self.response_description = description
- class NotRecognizedError(ProtocolError):
- def __init__(self, description='NOT RECOGNIZED'):
- super().__init__()
- self.response_code = STATUS_CODES.NOT_RECOGNIZED
- self.response_description = description
- class InvalidDataError(ProtocolError):
- def __init__(self, description='INVALID DATA'):
- super().__init__()
- self.response_code = STATUS_CODES.INVALID_DATA
- self.response_description = description
- class ComplianceError(ProtocolError):
- def __init__(self, description='COMPLIANCE ERROR'):
- super().__init__()
- self.response_code = STATUS_CODES.COMPLIANCE_ERROR
- self.response_description = description
- class SignalNotSupportedError(ProtocolError):
- def __init__(self, description='SIGNAL NOT SUPPORTED'):
- super().__init__()
- self.response_code = STATUS_CODES.SIGNAL_NOT_SUPPORTED
- self.response_description = description
- class ReportNotSupportedError(ProtocolError):
- def __init__(self, description='REPORT NOT SUPPORTED'):
- super().__init__()
- self.response_code = STATUS_CODES.REPORT_NOT_SUPPORTED
- self.response_description = description
- class TargetMismatchError(ProtocolError):
- def __init__(self, description='TARGET MISMATCH'):
- super().__init__()
- self.response_code = STATUS_CODES.TARGET_MISMATCH
- self.response_description = description
- class NotRegisteredOrAuthorizedError(ProtocolError):
- def __init__(self, description='NOT REGISTERED OR AUTHORIZED'):
- super().__init__()
- self.response_code = STATUS_CODES.NOT_REGISTERED_OR_AUTHORIZED
- self.response_description = description
- class DeploymentError(ProtocolError):
- def __init__(self, description='DEPLOYMENT ERROR OR OTHER ERROR'):
- super().__init__()
- self.response_code = STATUS_CODES.DEPLOYMENT_ERROR_OR_OTHER_ERROR
- self.response_description = description
|