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