7 lines
203 B
C++
7 lines
203 B
C++
#include "httpnotfoundexception.h"
|
|
|
|
HttpNotFoundException::HttpNotFoundException(const HttpRequest &httpRequest) :
|
|
HttpException(httpRequest, QString("File not found: %0").arg(httpRequest.path))
|
|
{
|
|
}
|