Files
DbWebserver/webserverlib/httpnotfoundexception.cpp
2018-10-04 23:34:08 +02:00

7 lines
203 B
C++

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