aboutsummaryrefslogtreecommitdiff
path: root/odb/exceptions.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-02-21 13:24:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-02-21 13:24:11 +0200
commit02d943c11ab54e68c1ea6addd23c9852feecd94a (patch)
tree03fa8e7cff44434f2226b9e8e288b46a42319108 /odb/exceptions.hxx
parent79e1e744a2f306f9c04b0cda3058e9ed40d8421c (diff)
Get rid of unnecessary qualification
Diffstat (limited to 'odb/exceptions.hxx')
-rw-r--r--odb/exceptions.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/odb/exceptions.hxx b/odb/exceptions.hxx
index 84ec133..362c7b0 100644
--- a/odb/exceptions.hxx
+++ b/odb/exceptions.hxx
@@ -14,7 +14,7 @@
namespace odb
{
- struct LIBODB_EXPORT null_pointer: odb::exception
+ struct LIBODB_EXPORT null_pointer: exception
{
virtual const char*
what () const throw ();
@@ -22,19 +22,19 @@ namespace odb
// Transaction exceptions.
//
- struct LIBODB_EXPORT already_in_transaction: odb::exception
+ struct LIBODB_EXPORT already_in_transaction: exception
{
virtual const char*
what () const throw ();
};
- struct LIBODB_EXPORT not_in_transaction: odb::exception
+ struct LIBODB_EXPORT not_in_transaction: exception
{
virtual const char*
what () const throw ();
};
- struct LIBODB_EXPORT transaction_already_finalized: odb::exception
+ struct LIBODB_EXPORT transaction_already_finalized: exception
{
virtual const char*
what () const throw ();
@@ -42,19 +42,19 @@ namespace odb
// Session exceptions.
//
- struct LIBODB_EXPORT already_in_session: odb::exception
+ struct LIBODB_EXPORT already_in_session: exception
{
virtual const char*
what () const throw ();
};
- struct LIBODB_EXPORT not_in_session: odb::exception
+ struct LIBODB_EXPORT not_in_session: exception
{
virtual const char*
what () const throw ();
};
- struct LIBODB_EXPORT const_object: odb::exception
+ struct LIBODB_EXPORT const_object: exception
{
virtual const char*
what () const throw ();
@@ -62,31 +62,31 @@ namespace odb
// Database operations exceptions.
//
- struct LIBODB_EXPORT deadlock: odb::exception
+ struct LIBODB_EXPORT deadlock: exception
{
virtual const char*
what () const throw ();
};
- struct LIBODB_EXPORT object_not_persistent: odb::exception
+ struct LIBODB_EXPORT object_not_persistent: exception
{
virtual const char*
what () const throw ();
};
- struct LIBODB_EXPORT object_already_persistent: odb::exception
+ struct LIBODB_EXPORT object_already_persistent: exception
{
virtual const char*
what () const throw ();
};
- struct LIBODB_EXPORT result_not_cached: odb::exception
+ struct LIBODB_EXPORT result_not_cached: exception
{
virtual const char*
what () const throw ();
};
- struct LIBODB_EXPORT database_exception: odb::exception
+ struct LIBODB_EXPORT database_exception: exception
{
};