use core::fmt;
#[derive(Debug)]
pub enum Errors {
FileError,
}
impl std::error::Error for Errors {}
impl std::fmt::Display for Errors {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Errors::FileError => write!(f, "FileError:"),
}
}
}