use thiserror::Error;
#[derive(Error, Debug)]
pub enum TransactionError {
#[error("TransactionError - Sqlx: {0}")]
Sqlx(#[from] sqlx::Error),
#[error("TransactionError - EntityError: {0}")]
EntityError(#[from] crate::entity::EntityError),
#[error("TransactionError - NotFound: external id '{0}' not found")]
CouldNotFindByExternalId(String),
}