1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum OutboxServerError { 5 #[error("OutboxServerError - TonicError: {0}")] 6 TonicError(#[from] tonic::transport::Error), 7}