Joedb 10.4.1
The Journal-Only Embedded Database
Loading...
Searching...
No Matches
Out_Of_Date.h
Go to the documentation of this file.
1#ifndef joedb_Out_Of_Date_declared
2#define joedb_Out_Of_Date_declared
3
5
6namespace joedb
7{
8 /// sent when the schema of a read-only compiled database is out of date
9 /// @ingroup error
10 class Out_Of_Date: public Exception
11 {
12 public:
13 explicit Out_Of_Date(const char *message): Exception(message)
14 {
15 }
16
17 explicit Out_Of_Date(const std::string &message): Exception(message)
18 {
19 }
20 };
21}
22
23#endif
sent when the schema of a read-only compiled database is out of date
Definition Out_Of_Date.h:11
Out_Of_Date(const std::string &message)
Definition Out_Of_Date.h:17
Out_Of_Date(const char *message)
Definition Out_Of_Date.h:13