routee-compass 0.19.2

The RouteE-Compass energy-aware routing engine
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::plugin::PluginError;
use routee_compass_core::config::CompassConfigurationError;

#[derive(thiserror::Error, Debug)]
pub enum CompassComponentError {
    #[error(transparent)]
    CompassConfigurationError(#[from] CompassConfigurationError),
    #[error(transparent)]
    PluginError(#[from] PluginError),
}