use std::error::Error as StdError;
use std::fmt::{self, Debug, Display, Formatter};
pub type RouteError = Box<dyn StdError + Send + Sync + 'static>;
pub struct Error {
msg: String,
}
impl Error {
pub fn new<M: Into<String>>(msg: M) -> Self {
Error { msg: msg.into() }
}
pub fn wrap<E: std::error::Error + Send + Sync + 'static>(err: E) -> Self {
Error { msg: err.to_string() }
}
}
impl Display for Error {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
write!(f, "routerify::Error: {}", self.msg)
}
}
impl Debug for Error {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
write!(f, "routerify::Error: {}", self.msg)
}
}
impl std::error::Error for Error {
fn description(&self) -> &str {
self.msg.as_str()
}
}