use std::fmt::{Display, Formatter};
#[derive(Debug, Clone)]
pub struct Error {
pub message: String,
}
impl Error {
pub fn msg<T: Into<String>>(msg: T) -> Self {
Self {
message: msg.into(),
}
}
}
impl Display for Error {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
std::fmt::Debug::fmt(self, f)
}
}
impl std::error::Error for Error {}
impl From<std::io::Error> for Error {
fn from(error: std::io::Error) -> Self {
Error {
message: error.to_string(),
}
}
}