use std::error::Error;
use std::fmt;
#[derive(Debug)]
pub struct UpdateError(pub String);
impl UpdateError {
pub fn new(field0: String) -> Self {
Self(field0)
}
}
impl Error for UpdateError {}
impl fmt::Display for UpdateError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "UpdateError: {}", self.0)
}
}