use std::fmt::{Display, Formatter};
pub(crate) type Result<T> = std::result::Result<T, Error>;
#[derive(Debug)]
pub(crate) struct Error {
msg: String,
}
impl Error {
pub(crate) fn new(msg: impl Into<String>) -> Self {
Self { msg: msg.into() }
}
}
impl Display for Error {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
f.write_str(&self.msg)
}
}
impl std::error::Error for Error {}