Joedb 10.4.1
The Journal-Only Embedded Database
Loading...
Searching...
No Matches
Disconnection.h
Go to the documentation of this file.
1#ifndef joedb_Disconnection_declared
2#define joedb_Disconnection_declared
3
5
6namespace joedb
7{
8 /// @ref joedb::Robust_Connection does not try to reconnect when thrown
9 /// @ingroup error
11 {
12 public:
13 explicit Disconnection(const char *what_arg): Exception(what_arg)
14 {
15 }
16
17 explicit Disconnection(const std::string &what_arg): Exception(what_arg)
18 {
19 }
20 };
21}
22
23#endif
joedb::Robust_Connection does not try to reconnect when thrown
Disconnection(const char *what_arg)
Disconnection(const std::string &what_arg)