From 6f0d40508286afc8cdd72a0b5f807d5c2a589cfc Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 4 Jun 2010 16:33:08 +0200 Subject: Initial implementation --- odb/exceptions.hxx | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 odb/exceptions.hxx (limited to 'odb/exceptions.hxx') diff --git a/odb/exceptions.hxx b/odb/exceptions.hxx new file mode 100644 index 0000000..4b5909b --- /dev/null +++ b/odb/exceptions.hxx @@ -0,0 +1,52 @@ +// file : odb/exceptions.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_EXCEPTIONS_HXX +#define ODB_EXCEPTIONS_HXX + +#include + +namespace odb +{ + // nested_transaction + // + struct already_in_transaction: odb::exception + { + }; + + // no_transaction + // + struct not_in_transaction: odb::exception + { + }; + + // finilized_transaction + // + struct transaction_already_finilized: odb::exception + { + }; + + struct already_in_session: odb::exception + { + }; + + struct not_in_session: odb::exception + { + }; + + struct object_not_persistent: odb::exception + { + }; + + struct object_already_persistent: odb::exception + { + }; + + struct database_exception: odb::exception + { + }; +} + +#endif // ODB_EXCEPTIONS_HXX -- cgit v1.1