mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
23 lines
684 B
Python
23 lines
684 B
Python
# Copyright © 2024 Atlantic Algorithms Ltd.,
|
|
# CoreChainDB and Atlantic Algorithms Ltd. software contributors.
|
|
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
|
# Code is Apache-2.0 and docs are CC-BY-4.0
|
|
|
|
from corechaindb.exceptions import BigchainDBError
|
|
|
|
|
|
class BackendError(BigchainDBError):
|
|
"""Top level exception for any backend exception."""
|
|
|
|
|
|
class ConnectionError(BackendError):
|
|
"""Exception raised when the connection to the backend fails."""
|
|
|
|
|
|
class OperationError(BackendError):
|
|
"""Exception raised when a backend operation fails."""
|
|
|
|
|
|
class DuplicateKeyError(OperationError):
|
|
"""Exception raised when an insert fails because the key is not unique"""
|