blob: 3b8c7177bc2448072a70ec77b55361e2bca3a8ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
use std::fmt;
use std::fmt::{Display, Formatter};
use error_stack::Context;
#[derive(Debug)]
pub struct DIContainerError;
impl Display for DIContainerError
{
fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result
{
fmt.write_str("A DI container error has occurred")
}
}
impl Context for DIContainerError {}
#[derive(Debug)]
pub struct BindingBuilderError;
impl Display for BindingBuilderError
{
fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result
{
fmt.write_str("A binding builder error has occurred")
}
}
impl Context for BindingBuilderError {}
|