| 705 | struct BadRequest : Response |
| 706 | { |
| 707 | BadRequest() |
| 708 | : BadRequest("400 Bad Request.") {} |
| 709 | |
| 710 | explicit BadRequest(const std::string& body) |
| 711 | : Response(body, Status::BAD_REQUEST) {} |
nothing calls this directly
no outgoing calls
no test coverage detected