mithril_aggregator/dependency_injection/
error.rs1use std::{error::Error, fmt::Display};
4
5use config::ConfigError;
6use mithril_common::StdError;
7
8pub type Result<T> = std::result::Result<T, DependenciesBuilderError>;
10
11#[derive(Debug)]
13pub enum DependenciesBuilderError {
14 Initialization {
16 message: String,
18
19 error: Option<StdError>,
21 },
22
23 MissingConfiguration(String),
25
26 InconsistentState(String),
29}
30
31impl Display for DependenciesBuilderError {
32 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
33 match self {
34 Self::Initialization { message, error } => {
35 if let Some(nested) = error {
36 write!(f, "Dependency initialization error: «{message}» with additional nested error: '{nested:?}'.")
37 } else {
38 write!(f, "Dependency initialization error: «{message}».")
39 }
40 }
41 Self::MissingConfiguration(field) => {
42 write!(f, "Missing configuration setting '{field}'.")
43 }
44 Self::InconsistentState(message) => {
45 write!(f, "Inconsistent dependency state: '{message}'.")
46 }
47 }
48 }
49}
50
51impl Error for DependenciesBuilderError {}
52
53impl From<StdError> for DependenciesBuilderError {
54 fn from(value: StdError) -> Self {
55 DependenciesBuilderError::Initialization {
56 message: "subsystem error".to_string(),
57 error: Some(value),
58 }
59 }
60}
61
62impl From<ConfigError> for DependenciesBuilderError {
63 fn from(value: ConfigError) -> Self {
64 Self::MissingConfiguration(format!("{value}"))
65 }
66}