1//! Database related errors. 2use uuid::Uuid; 3 4#[derive(Debug)] 5pub enum Error { 6 DoesNotExist(Uuid), 7 AlreadyExists(Uuid), 8 NoMatches, 9 MultipleMatches, 10} 11 12#[cfg(test)] 13#[path = "./error_test.rs"] 14mod error_test;