1//! Database Errors 2 3/// DB not found error 4#[derive(thiserror::Error, Debug, PartialEq, Eq)] 5#[error("Cannot find this item")] 6pub(crate) struct NotFoundError;