aboutsummaryrefslogtreecommitdiff
path: root/odb/tracer/exceptions.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-07-20 11:05:05 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-07-20 11:05:05 +0200
commit2c57577ac8995a83182190ae94e6b28f4715ca04 (patch)
tree660a72c984fde6f37cb04bb779d203f54f6cbb2e /odb/tracer/exceptions.hxx
parentffbed42338e0c7c3c76d4d9334d45755ac58e346 (diff)
Add database_exception
Diffstat (limited to 'odb/tracer/exceptions.hxx')
-rw-r--r--odb/tracer/exceptions.hxx31
1 files changed, 31 insertions, 0 deletions
diff --git a/odb/tracer/exceptions.hxx b/odb/tracer/exceptions.hxx
new file mode 100644
index 0000000..7a1dc9f
--- /dev/null
+++ b/odb/tracer/exceptions.hxx
@@ -0,0 +1,31 @@
+// file : odb/tracer/exceptions.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_TRACER_EXCEPTIONS_HXX
+#define ODB_TRACER_EXCEPTIONS_HXX
+
+#include <string>
+
+#include <odb/exceptions.hxx>
+
+namespace odb
+{
+ namespace tracer
+ {
+ struct database_exception: odb::database_exception
+ {
+ database_exception (const std::string&);
+ ~database_exception () throw ();
+
+ virtual char const*
+ what () const throw ();
+
+ private:
+ std::string what_;
+ };
+ }
+}
+
+#endif // ODB_TRACER_EXCEPTIONS_HXX