(_: ParseError)
| 32 | // and provide a custom message |
| 33 | impl From<ParseError> for ServiceError { |
| 34 | fn from(_: ParseError) -> ServiceError { |
| 35 | ServiceError::BadRequest("Invalid UUID".into()) |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | impl From<DBError> for ServiceError { |
nothing calls this directly
no outgoing calls
no test coverage detected