WebFramework
v3.0.12
Web framework for C++.
Loading...
Searching...
No Matches
NotImplementedException.cpp
1
#include "NotImplementedException.h"
2
3
using namespace
std;
4
5
namespace
framework
6
{
7
namespace
exceptions
8
{
9
NotImplementedException::NotImplementedException(string_view className, string_view methodName) :
10
BadRequestException(format(
"{} method {} in {}"
, ::exceptions::notImplemented, methodName, className))
11
{
12
13
}
14
}
15
}
framework
Definition
StandardWebFrameworkDynamicPagesFunctions.cpp:8
WebFramework
src
Exceptions
NotImplementedException.cpp
Generated by
1.12.0