1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum ConfigError { 5 #[error("invalid regex")] 6 Regex(#[from] anyhow::Error), 7}