| 703 | |
| 704 | |
| 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) {} |
| 712 | }; |
| 713 | |
| 714 | |
| 715 | struct Unauthorized : Response |
no outgoing calls