aboutsummaryrefslogtreecommitdiff
path: root/odb/details/posix/exceptions.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/details/posix/exceptions.hxx')
-rw-r--r--odb/details/posix/exceptions.hxx31
1 files changed, 31 insertions, 0 deletions
diff --git a/odb/details/posix/exceptions.hxx b/odb/details/posix/exceptions.hxx
new file mode 100644
index 0000000..f4b4572
--- /dev/null
+++ b/odb/details/posix/exceptions.hxx
@@ -0,0 +1,31 @@
+// file : odb/details/posix/exceptions.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_DETAILS_POSIX_EXCEPTIONS_HXX
+#define ODB_DETAILS_POSIX_EXCEPTIONS_HXX
+
+#include <odb/details/exception.hxx>
+
+namespace odb
+{
+ namespace details
+ {
+ struct posix_exception: details::exception
+ {
+ posix_exception (int code) : code_ (code) {}
+
+ int
+ code () const {return code_;}
+
+ virtual const char*
+ what () const throw ();
+
+ private:
+ int code_;
+ };
+ }
+}
+
+#endif // ODB_DETAILS_POSIX_EXCEPTIONS_HXX