blob: 534f07049b72af3d9bb85e858e30b9489eaa397b (
plain) (
tree)
|
|
#[derive(Debug)]
pub enum DichroismError {
UriDataExtract,
InvalidPhotoRoot,
ImageWrite,
}
impl std::error::Error for DichroismError {}
impl std::fmt::Display for DichroismError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self)
}
}
|