use thiserror::Error; #[derive(Debug, Error)] pub enum ApplicationError { #[error(transparent)] Domain(#[from] domain::DomainError), }