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.hxx | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 odb/pgsql/exceptions.hxx (limited to 'odb/pgsql/exceptions.hxx') 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 +// 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 + +#include + +#include + +#include + +#include + +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 + +#endif // ODB_PGSQL_EXCEPTIONS_HXX -- cgit v1.1