Skip to main content

outbox_core/
error.rs

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