1
2
3
4
5
6
7
8
9
use super::*;

impl From<ExampleErrorKind> for ExampleError {
    fn from(value: ExampleErrorKind) -> Self {
        Self {
            kind: Box::new(value),
        }
    }
}