1
2
3
4
use std::error::Error;

pub type DynStdError = Box<dyn Error>;
pub type ResultDynError<T> = Result<T, failure::Error>;