1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum Error { 5 #[error(transparent)] 6 EcitygmlError(#[from] ecitygml_core::Error), 7 #[error(transparent)] 8 EgmlError(#[from] egml::Error), 9}