1 2 3 4 5 6 7 8 9
use thiserror::Error; pub use config::ConfigError as BuilderError; #[derive(Error, Debug)] pub enum ConfigError { #[error(transparent)] Config(#[from] BuilderError), }