| 11 | |
| 12 | #[derive(Debug)] |
| 13 | pub enum Error { |
| 14 | ParseError(std::num::ParseIntError), |
| 15 | MissingParameters, |
| 16 | DatabaseQueryError, |
| 17 | ReqwestAPIError(ReqwestError), |
| 18 | MiddlewareReqwestAPIError(MiddlewareReqwestError), |
| 19 | ClientError(APILayerError), |
| 20 | ServerError(APILayerError) |
| 21 | } |
| 22 | |
| 23 | #[derive(Debug, Clone)] |
| 24 | pub struct APILayerError { |
nothing calls this directly
no outgoing calls
no test coverage detected