aboutsummaryrefslogtreecommitdiff
path: root/odb/tracer/exceptions.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/tracer/exceptions.cxx')
-rw-r--r--odb/tracer/exceptions.cxx31
1 files changed, 31 insertions, 0 deletions
diff --git a/odb/tracer/exceptions.cxx b/odb/tracer/exceptions.cxx
new file mode 100644
index 0000000..14977cc
--- /dev/null
+++ b/odb/tracer/exceptions.cxx
@@ -0,0 +1,31 @@
+// file : odb/tracer/exceptions.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#include <odb/tracer/exceptions.hxx>
+
+using namespace std;
+
+namespace odb
+{
+ namespace tracer
+ {
+ database_exception::
+ ~database_exception () throw ()
+ {
+ }
+
+ database_exception::
+ database_exception (const string& what)
+ : what_ (what)
+ {
+ }
+
+ char const* database_exception::
+ what () const throw ()
+ {
+ return what_.c_str ();
+ }
+ }
+}