| 4 | |
| 5 | #[derive(Debug)] |
| 6 | pub enum ApplicationError { |
| 7 | DatabaseConnectionError(Box<AnyError>), |
| 8 | DeserializationError(Box<AnyError>), |
| 9 | EntityNotFound, |
| 10 | EventNotFound, |
| 11 | CommandNotFound, |
| 12 | InvalidURL, |
| 13 | TransactionError, |
| 14 | ParsingError, |
| 15 | StopSentinel, |
| 16 | } |
| 17 | |
| 18 | impl error::Error for ApplicationError {} |
| 19 |
nothing calls this directly
no outgoing calls
no test coverage detected