cala_ledger/entry/error.rs
use thiserror::Error;
#[derive(Error, Debug)]
pub enum EntryError {
#[error("EntryError - Sqlx: {0}")]
Sqlx(#[from] sqlx::Error),
#[error("JournalError - EsEntityError: {0}")]
EsEntityError(es_entity::EsEntityError),
#[error("JournalError - CursorDestructureError: {0}")]
CursorDestructureError(#[from] es_entity::CursorDestructureError),
}
es_entity::from_es_entity_error!(EntryError);