Files
DbWebserver/webserverlib/httpnotfoundexception.h

12 lines
200 B
C
Raw Permalink Normal View History

#pragma once
#include "httpexception.h"
#include "httprequest.h"
class HttpNotFoundException : public HttpException
{
public:
explicit HttpNotFoundException(const HttpRequest &httpRequest);
};