| 8 | |
| 9 | #[derive(Debug)] |
| 10 | pub enum Error { |
| 11 | ParseError(std::num::ParseIntError), |
| 12 | MissingParameters, |
| 13 | DatabaseQueryError, |
| 14 | } |
| 15 | |
| 16 | impl std::fmt::Display for Error { |
| 17 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected