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