1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum Error { 5 #[error("path is not a directory")] 6 ContainsNoImages, 7 8 #[error("path is not a directory")] 9 ContainsNoImageSeries, 10}