use std::error::Error as StdError;
use std::fmt;
use std::time::SystemTimeError;
#[derive(Debug)]
pub struct ScrobblerError {
err_msg: String,
}
impl ScrobblerError {
pub fn new(err_msg: String) -> Self {
ScrobblerError { err_msg }
}
}
impl fmt::Display for ScrobblerError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.err_msg)
}
}
impl StdError for ScrobblerError {}
impl From<SystemTimeError> for ScrobblerError {
fn from(error: SystemTimeError) -> Self {
Self::new(error.to_string())
}
}
impl From<String> for ScrobblerError {
fn from(error: String) -> Self {
Self::new(error)
}
}