| 8 | #include <string> |
| 9 | |
| 10 | static std::string |
| 11 | MakeSqliteErrorMessage(sqlite3 *db, const char *msg) noexcept |
| 12 | { |
| 13 | return std::string(msg) + ": " + sqlite3_errmsg(db); |
| 14 | } |
| 15 | |
| 16 | SqliteError::SqliteError(sqlite3 *db, int _code, const char *msg) noexcept |
| 17 | :std::runtime_error(MakeSqliteErrorMessage(db, msg)), code(_code) {} |