| 734 | struct Forbidden : Response |
| 735 | { |
| 736 | Forbidden() |
| 737 | : Forbidden("403 Forbidden.") {} |
| 738 | |
| 739 | explicit Forbidden(const std::string& body) |
| 740 | : Response(body, Status::FORBIDDEN) {} |
nothing calls this directly
no outgoing calls
no test coverage detected