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