summaryrefslogtreecommitdiff
path: root/dichroism/src/error.rs
blob: 43933d408981e50332147aef721fb8c740c2bb20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[derive(Debug)]
pub enum DichroismError {
    UriDataExtract,
    InvalidImageRoot,
    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)
    }
}