1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum MactimeError { 5 #[error("ambigious file name: '{0}'")] 6 AmbiguousFilename(String), 7}