WebFramework v3.0.12
Web framework for C++.
Loading...
Searching...
No Matches
NotImplementedException.cpp
1#include "NotImplementedException.h"
2
3using namespace std;
4
5namespace 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}