aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/exceptions.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-05-03 12:26:33 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-05-05 16:42:12 +0200
commit77bbae6038d20576a4807ed8ca834685a1e85afa (patch)
tree1d079baf6d2aa379bd2a04efb5617302309bb671 /odb/pgsql/exceptions.hxx
parent00eab4e6eca4227b1ecd2c6f502eedad41c3af96 (diff)
Add pgsql database implementation
Diffstat (limited to 'odb/pgsql/exceptions.hxx')
-rw-r--r--odb/pgsql/exceptions.hxx39
1 files changed, 39 insertions, 0 deletions
diff --git a/odb/pgsql/exceptions.hxx b/odb/pgsql/exceptions.hxx
new file mode 100644
index 0000000..0ceb83c
--- /dev/null
+++ b/odb/pgsql/exceptions.hxx
@@ -0,0 +1,39 @@
+// file : odb/pgsql/exceptions.hxx
+// author : Constantin Michael <constantin@codesynthesis.com>
+// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_PGSQL_EXCEPTIONS_HXX
+#define ODB_PGSQL_EXCEPTIONS_HXX
+
+#include <odb/pre.hxx>
+
+#include <string>
+
+#include <odb/exceptions.hxx>
+
+#include <odb/pgsql/version.hxx>
+
+#include <odb/pgsql/details/export.hxx>
+
+namespace odb
+{
+ namespace pgsql
+ {
+ struct LIBODB_PGSQL_EXPORT cli_exception: odb::exception
+ {
+ cli_exception (const std::string& what);
+ ~cli_exception () throw ();
+
+ virtual const char*
+ what () const throw ();
+
+ private:
+ std::string what_;
+ };
+ }
+}
+
+#include <odb/post.hxx>
+
+#endif // ODB_PGSQL_EXCEPTIONS_HXX