summaryrefslogtreecommitdiff
path: root/libodb-sqlite/odb/sqlite/error.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libodb-sqlite/odb/sqlite/error.hxx')
-rw-r--r--libodb-sqlite/odb/sqlite/error.hxx27
1 files changed, 27 insertions, 0 deletions
diff --git a/libodb-sqlite/odb/sqlite/error.hxx b/libodb-sqlite/odb/sqlite/error.hxx
new file mode 100644
index 0000000..4646f85
--- /dev/null
+++ b/libodb-sqlite/odb/sqlite/error.hxx
@@ -0,0 +1,27 @@
+// file : odb/sqlite/error.hxx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_SQLITE_ERROR_HXX
+#define ODB_SQLITE_ERROR_HXX
+
+#include <odb/pre.hxx>
+
+#include <odb/sqlite/version.hxx>
+#include <odb/sqlite/details/export.hxx>
+
+namespace odb
+{
+ namespace sqlite
+ {
+ class connection;
+
+ // Translate SQLite error and throw an appropriate exception.
+ //
+ LIBODB_SQLITE_EXPORT void
+ translate_error (int error, connection&);
+ }
+}
+
+#include <odb/post.hxx>
+
+#endif // ODB_SQLITE_ERROR_HXX