exceptions¶
- exception advanced_alchemy.exceptions.AdvancedAlchemyError[source]
Bases:
Exception
Base exception class from which all Advanced Alchemy exceptions inherit.
- exception advanced_alchemy.exceptions.DuplicateKeyError[source]
Bases:
IntegrityError
Duplicate key error.
- exception advanced_alchemy.exceptions.ForeignKeyError[source]
Bases:
IntegrityError
Foreign key error.
- exception advanced_alchemy.exceptions.ImproperConfigurationError[source]
Bases:
AdvancedAlchemyError
Improper Configuration error.
This exception is raised when there is an issue with the configuration of a module.
- exception advanced_alchemy.exceptions.IntegrityError[source]
Bases:
RepositoryError
Data integrity error.
- exception advanced_alchemy.exceptions.MissingDependencyError[source]
Bases:
AdvancedAlchemyError
,ImportError
Missing optional dependency.
This exception is raised when a module depends on a dependency that has not been installed.
- Parameters:
- exception advanced_alchemy.exceptions.MultipleResultsFoundError[source]
Bases:
RepositoryError
Multiple results found error.
This exception is raised when a single result was expected but multiple were found.
- exception advanced_alchemy.exceptions.NotFoundError[source]
Bases:
RepositoryError
Not found error.
This exception is raised when a requested resource is not found.
- exception advanced_alchemy.exceptions.RepositoryError[source]
Bases:
AdvancedAlchemyError
Base repository exception type.
- exception advanced_alchemy.exceptions.SerializationError[source]
Bases:
AdvancedAlchemyError
Encoding or decoding error.
This exception is raised when serialization or deserialization of an object fails.
- advanced_alchemy.exceptions.wrap_sqlalchemy_exception(error_messages=None, dialect_name=None, wrap_exceptions=True)[source]
Do something within context to raise a
RepositoryError
chained from an originalSQLAlchemyError
.>>> try: ... with wrap_sqlalchemy_exception(): ... raise SQLAlchemyError("Original Exception") ... except RepositoryError as exc: ... print( ... f"caught repository exception from {type(exc.__context__)}" ... ) caught repository exception from <class 'sqlalchemy.exc.SQLAlchemyError'>
- Parameters:
- Raises:
NotFoundError – Raised when no rows matched the specified data.
MultipleResultsFound – Raised when multiple rows matched the specified data.
IntegrityError – Raised when an integrity error occurs.
InvalidRequestError – Raised when an invalid request was made to SQLAlchemy.
RepositoryError – Raised for other SQLAlchemy errors.
AttributeError – Raised when an attribute error occurs during processing.
SQLAlchemyError – Raised for general SQLAlchemy errors.
StatementError – Raised when there is an issue processing the statement.
MultipleResultsFoundError – Raised when multiple rows matched the specified data.
- Return type: