mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
10 lines
261 B
Python
10 lines
261 B
Python
from bigchaindb.exceptions import BigchainDBError
|
|
|
|
|
|
class ConnectionError(BigchainDBError):
|
|
"""Exception raised when the connection to the DataBase fails."""
|
|
|
|
|
|
class DatabaseOpFailedError(BigchainDBError):
|
|
"""Exception for database operation errors."""
|