Source code for rtkit.errors

__all__ = [
    'RTBadConfiguration',
    'RTUnknownTypeError',
    'RTInvalidError',
    'RTValueError',
    'RTResourceError',
    'RTNotFoundError',
    'RTUnauthorized',
]


[docs]class RTBadConfiguration(Exception): pass
[docs]class RTResourceError(Exception): """Default error class """ status_int = None def __init__(self, msg=None, http_code=None, response=None): self.msg = msg or '' self.status_int = http_code or self.status_int self.response = response super(RTResourceError, self).__init__() def _get_message(self): return self.msg def _set_message(self, msg): self.msg = msg or '' message = property(_get_message, _set_message) def __str__(self): if self.msg: return self.msg try: return str(self.__dict__) except (NameError, ValueError, KeyError) as e: return 'Unprintable exception %s: %s' \ % (self.__class__.__name__, str(e))
[docs]class RTNotFoundError(RTResourceError): """Not Found Exception""" status_int = 404
[docs]class RTUnknownTypeError(RTResourceError): """Unknown Type Exception""" status_int = 400
[docs]class RTInvalidError(RTResourceError): """Invalid Exception""" status_int = 400
[docs]class RTValueError(RTResourceError): """value Error Exception""" status_int = 400
[docs]class RTUnauthorized(RTResourceError): """Not Authorised Exception""" status_int = 401