| 823 | |
| 824 | |
| 825 | struct InternalServerError : Response |
| 826 | { |
| 827 | InternalServerError() |
| 828 | : InternalServerError("500 Internal Server Error.") {} |
| 829 | |
| 830 | explicit InternalServerError(const std::string& body) |
| 831 | : Response(body, Status::INTERNAL_SERVER_ERROR) {} |
| 832 | }; |
| 833 | |
| 834 | |
| 835 | struct NotImplemented : Response |