WebFramework v3.0.12
Web framework for C++.
Loading...
Searching...
No Matches
BaseExecutorException.cpp
1#include "BaseExecutorException.h"
2
3using namespace std;
4
5namespace framework
6{
7 namespace exceptions
8 {
9 BaseExecutorException::BaseExecutorException(string_view message) :
10 BaseWebFrameworkException(message)
11 {
12
13 }
14 }
15}