1use thiserror::Error; 2 3#[derive(Debug, Error)] 4pub enum OutboxError { 5 #[error("Infrastructure error: {0}")] 6 InfrastructureError(String), 7}