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