diff options
Diffstat (limited to 'zenhttp/include')
| -rw-r--r-- | zenhttp/include/zenhttp/httpserver.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/zenhttp/include/zenhttp/httpserver.h b/zenhttp/include/zenhttp/httpserver.h index b73646dad..b8b63ac4d 100644 --- a/zenhttp/include/zenhttp/httpserver.h +++ b/zenhttp/include/zenhttp/httpserver.h @@ -259,17 +259,6 @@ protected: ExtendableStringBuilder<256> m_QueryStringUtf8; }; -class HttpServerException : public std::system_error -{ -public: - HttpServerException(std::string_view Message, std::error_code Error) : std::system_error(Error), m_What(Message) {} - - virtual const char* what() const override; - -protected: - std::string m_What; -}; - /** * Base class for implementing an HTTP "service" * |