9#include <userver/server/handlers/exceptions.hpp>
10#include <userver/server/http/http_status.hpp>
12USERVER_NAMESPACE_BEGIN
14namespace server::
http {
17
18
19
20
21
22
23
42 template <
typename... Args>
44 HttpStatus http_status, Args&&... args)
46 std::forward<Args>(args)...),
47 http_status_(http_status) {}
49 HttpStatus GetHttpStatus()
const {
return http_status_; }
52 HttpStatus http_status_;