aboutsummaryrefslogtreecommitdiff
path: root/3rdparty/sqlitecpp/source/SQLiteCpp/Exception.cpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-06-27 18:27:13 -0700
committerrtk0c <[email protected]>2022-06-27 18:27:13 -0700
commit8f0dda5eab181b0f14f2652b4e984aaaae3f258c (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /3rdparty/sqlitecpp/source/SQLiteCpp/Exception.cpp
parentfad6a88a13ab1f888ab25ad0aae19c1d63aa0623 (diff)
Start from a clean slate
Diffstat (limited to '3rdparty/sqlitecpp/source/SQLiteCpp/Exception.cpp')
-rw-r--r--3rdparty/sqlitecpp/source/SQLiteCpp/Exception.cpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/3rdparty/sqlitecpp/source/SQLiteCpp/Exception.cpp b/3rdparty/sqlitecpp/source/SQLiteCpp/Exception.cpp
deleted file mode 100644
index 0dc644f..0000000
--- a/3rdparty/sqlitecpp/source/SQLiteCpp/Exception.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
-/**
- * @file Exception.cpp
- * @ingroup SQLiteCpp
- * @brief Encapsulation of the error message from SQLite3 on a std::runtime_error.
- *
- * Copyright (c) 2012-2021 Sebastien Rombauts ([email protected])
- *
- * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
- * or copy at http://opensource.org/licenses/MIT)
- */
-#include <SQLiteCpp/Exception.h>
-
-#include <sqlite3.h>
-
-
-namespace SQLite
-{
-
-Exception::Exception(const char* aErrorMessage, int ret) :
- std::runtime_error(aErrorMessage),
- mErrcode(ret),
- mExtendedErrcode(-1)
-{
-}
-
-Exception::Exception(sqlite3* apSQLite) :
- std::runtime_error(sqlite3_errmsg(apSQLite)),
- mErrcode(sqlite3_errcode(apSQLite)),
- mExtendedErrcode(sqlite3_extended_errcode(apSQLite))
-{
-}
-
-Exception::Exception(sqlite3* apSQLite, int ret) :
- std::runtime_error(sqlite3_errmsg(apSQLite)),
- mErrcode(ret),
- mExtendedErrcode(sqlite3_extended_errcode(apSQLite))
-{
-}
-
-// Return a string, solely based on the error code
-const char* Exception::getErrorStr() const noexcept
-{
- return sqlite3_errstr(mErrcode);
-}
-
-
-} // namespace SQLite