aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/exceptions.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/oracle/exceptions.cxx')
-rw-r--r--odb/oracle/exceptions.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/odb/oracle/exceptions.cxx b/odb/oracle/exceptions.cxx
index bfbe78d..1d9bdf1 100644
--- a/odb/oracle/exceptions.cxx
+++ b/odb/oracle/exceptions.cxx
@@ -23,7 +23,7 @@ namespace odb
}
database_exception::
- ~database_exception () throw ()
+ ~database_exception () ODB_NOTHROW_NOEXCEPT
{
}
@@ -52,7 +52,7 @@ namespace odb
}
const char* database_exception::
- what () const throw ()
+ what () const ODB_NOTHROW_NOEXCEPT
{
return what_.c_str ();
}
@@ -68,7 +68,7 @@ namespace odb
//
const char* lob_comparison::
- what () const throw ()
+ what () const ODB_NOTHROW_NOEXCEPT
{
return "comparison of LOB values in queries not supported";
}
@@ -90,12 +90,12 @@ namespace odb
}
cli_exception::
- ~cli_exception () throw ()
+ ~cli_exception () ODB_NOTHROW_NOEXCEPT
{
}
const char* cli_exception::
- what () const throw ()
+ what () const ODB_NOTHROW_NOEXCEPT
{
return what_.c_str ();
}
@@ -111,7 +111,7 @@ namespace odb
//
const char* invalid_oci_handle::
- what () const throw ()
+ what () const ODB_NOTHROW_NOEXCEPT
{
return "invalid oci handle passed or unable to allocate handle";
}