blob: f2b8add9a24dc23583ed2d95b9afbf4cc8f68761 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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 {}
|