| 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) {} |
nothing calls this directly
no outgoing calls
no test coverage detected