1 2 3 4 5 6 7 8 9 10 11 12 13
use thiserror::Error; #[derive(Debug, Error)] pub enum CoreError { #[error("module configuration failed: {0}")] ModuleConfig(String), #[error("bootstrap failed: {0}")] Bootstrap(String), #[error(transparent)] Di(#[from] crate::di::DiError), }