1use thiserror::Error; 2 3/// Errors generated by the library. 4#[derive(Debug, Error)] 5pub enum Error { 6 /// Errors generated by the core library. 7 #[error(transparent)] 8 Core(#[from] sos_core::Error), 9}