| 14 | } |
| 15 | |
| 16 | SqliteError::SqliteError(sqlite3 *db, int _code, const char *msg) noexcept |
| 17 | :std::runtime_error(MakeSqliteErrorMessage(db, msg)), code(_code) {} |
| 18 | |
| 19 | SqliteError::SqliteError(sqlite3_stmt *stmt, int _code, |
| 20 | const char *msg) noexcept |
nothing calls this directly
no test coverage detected