Skip to main content

oca_data_entry/
errors.rs

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