From 77bbae6038d20576a4807ed8ca834685a1e85afa Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Tue, 3 May 2011 12:26:33 +0200 Subject: Add pgsql database implementation --- odb/pgsql/exceptions.cxx | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 odb/pgsql/exceptions.cxx (limited to 'odb/pgsql/exceptions.cxx') diff --git a/odb/pgsql/exceptions.cxx b/odb/pgsql/exceptions.cxx new file mode 100644 index 0000000..bea0870 --- /dev/null +++ b/odb/pgsql/exceptions.cxx @@ -0,0 +1,35 @@ +// file : odb/pgsql/exceptions.cxx +// author : Constantin Michael +// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#include + +using namespace std; + +namespace odb +{ + namespace pgsql + { + // + // cli_exception + // + + cli_exception:: + cli_exception (const std::string& what) + : what_ (what) + { + } + + cli_exception:: + ~cli_exception () throw () + { + } + + const char* cli_exception:: + what () const throw () + { + return what_.c_str (); + } + } +} -- cgit v1.1