1 2#[derive(Debug, thiserror::Error)] 3pub enum ParseError { 4 #[error("IO error '{0}'")] 5 Io(#[from] std::io::Error), 6 7 #[error("Parse error '{0}'")] 8 Parse(String), 9}