WebFramework v3.0.12
Web framework for C++.
Loading...
Searching...
No Matches
BaseWebFrameworkException.h
1#pragma once
2
3#include "Import/WebFrameworkCore.h"
4
5namespace framework
6{
7 namespace exceptions
8 {
10 class WEB_FRAMEWORK_API BaseWebFrameworkException : public std::runtime_error
11 {
12 public:
13 BaseWebFrameworkException(std::string_view errorMessage);
14
15 virtual ~BaseWebFrameworkException() = default;
16 };
17 }
18}
Base class for all WebFramework exceptions.