#include <sqlite3x.hpp>
Public Member Functions | |
database_error (const char *format,...) | |
Takes a format specifier compatible with printf. | |
database_error (sqlite3_connection &con) | |
Creates an exception with con.errormsg() as the what() text. | |
virtual char const * | what () const throw () |
Returns this object's error string. |
Definition at line 777 of file sqlite3x.hpp.
sqlite3x::database_error::database_error | ( | const char * | format, | |
... | ||||
) | [explicit] |
Takes a format specifier compatible with printf.
If the message length surpasses a hard-coded limit (2k?) then it is truncated to fit within that limit.
Definition at line 47 of file sqlite3x_exception.cpp.