1use thiserror::Error; 2 3 4#[derive(Error, Debug)] 5pub enum ParsingError 6{ 7 #[error("An error occured: {0}")] 8 DefaultError(String), 9 #[error(transparent)] 10 Other(#[from] anyhow::Error), 11}