WebFramework v3.0.12
Web framework for C++.
Loading...
Searching...
No Matches
NotImplementedException.h
1#pragma once
2
3#include "BadRequestException.h"
4
5namespace framework
6{
7 namespace exceptions
8 {
13 class WEB_FRAMEWORK_API NotImplementedException : public BadRequestException
14 {
15 public:
16 NotImplementedException(std::string_view className, std::string_view methodName);
17
18 ~NotImplementedException() = default;
19 };
20 }
21}
Default exception for all HTTP methods in BaseExecutor.