Enhance exception throwing with Boost Exception library
Change-Id: I471023fc23ffaebe04d9668426b4c1b03e4962ba
Refs: #2997
diff --git a/src/util/sqlite3-statement.cpp b/src/util/sqlite3-statement.cpp
index 243088b..f1871db 100644
--- a/src/util/sqlite3-statement.cpp
+++ b/src/util/sqlite3-statement.cpp
@@ -35,7 +35,7 @@
{
int res = sqlite3_prepare_v2(database, statement.c_str(), -1, &m_stmt, nullptr);
if (res != SQLITE_OK)
- throw std::domain_error("bad SQL statement: " + statement);
+ BOOST_THROW_EXCEPTION(std::domain_error("bad SQL statement: " + statement));
}
int