Source code for bigchaindb_driver.exceptions

"""Exceptions used by :mod:`bigchaindb_driver`."""


[docs]class BigchaindbException(Exception): """Base exception for all Bigchaindb exceptions."""
[docs]class KeypairNotFoundException(BigchaindbException): """Raised if an operation cannot proceed because the keypair was not given. """
[docs]class InvalidSigningKey(BigchaindbException): """Raised if a signing key is invalid. E.g.: :obj:`None`."""
[docs]class InvalidVerifyingKey(BigchaindbException): """Raised if a verifying key is invalid. E.g.: :obj:`None`."""
[docs]class MissingSigningKeyError(BigchaindbException): """Raised if a signing key is missing."""
[docs]class TransportError(BigchaindbException): """Base exception for transport related errors. This is mainly for cases where the status code denotes an HTTP error, and for cases in which there was a connection error. """ @property def status_code(self): return self.args[0] @property def error(self): return self.args[1] @property def info(self): return self.args[2]
[docs]class ConnectionError(TransportError): """Exception for errors occurring when connecting, and/or making a request to Bigchaindb. """
[docs]class NotFoundError(TransportError): """Exception for HTTP 404 errors."""
HTTP_EXCEPTIONS = { 404: NotFoundError, }