| 843 | |
| 844 | |
| 845 | struct ServiceUnavailable : Response |
| 846 | { |
| 847 | ServiceUnavailable() |
| 848 | : ServiceUnavailable("503 Service Unavailable.") {} |
| 849 | |
| 850 | explicit ServiceUnavailable(const std::string& body) |
| 851 | : Response(body, Status::SERVICE_UNAVAILABLE) {} |
| 852 | }; |
| 853 | |
| 854 | |
| 855 | namespace path { |