routee_compass/app/compass/
compass_component_error.rs

1use crate::plugin::PluginError;
2use routee_compass_core::config::CompassConfigurationError;
3
4#[derive(thiserror::Error, Debug)]
5pub enum CompassComponentError {
6    #[error(transparent)]
7    CompassConfigurationError(#[from] CompassConfigurationError),
8    #[error(transparent)]
9    PluginError(#[from] PluginError),
10}