Files
DbWebserver/webserverlib/httpnotfoundexception.cpp

7 lines
203 B
C++
Raw Permalink Normal View History

#include "httpnotfoundexception.h"
HttpNotFoundException::HttpNotFoundException(const HttpRequest &httpRequest) :
HttpException(httpRequest, QString("File not found: %0").arg(httpRequest.path))
{
}