/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Errors.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mmoussou #include #include namespace webserv { namespace http { class Errors { public: static std::string getResponseBody(int error_code); static void setEntries(const std::map); static std::map message; private: static std::map populateMessages(); static std::map set_error_pages; }; } // -namespace http } // -namespace webserv #endif // __WEBSERV_REQUESTS_ERRORS_HPP__