use std::error;
use std::fmt;
#[derive(Clone, Debug)]
pub struct Error {
message: String,
}
impl Error {
pub(crate) fn new<S: Into<String>>(message: S) -> Error {
Error { message: message.into() }
}
}
impl error::Error for Error {
fn description(&self) -> &str {
&self.message
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
f.pad(&self.message)
}
}