1use thiserror::Error; 2 3#[derive(Debug, Error)] 4pub enum EntryError { 5 #[error("Bundle SAID is missing")] 6 MissingSaid, 7}