summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/exception.h2
-rw-r--r--include/origexception.h3
2 files changed, 2 insertions, 3 deletions
diff --git a/include/exception.h b/include/exception.h
index 061c106..429b2cf 100644
--- a/include/exception.h
+++ b/include/exception.h
@@ -42,7 +42,7 @@ public:
/**
* Destructor
*/
- virtual ~Exception()
+ virtual ~Exception() throw()
{
}
diff --git a/include/origexception.h b/include/origexception.h
index bce0945..ca59e7f 100644
--- a/include/origexception.h
+++ b/include/origexception.h
@@ -47,7 +47,7 @@ public:
/**
* Destructor
*/
- virtual ~OrigException();
+ virtual ~OrigException() throw();
/**
* Restore the exception - because the exception was not handled by C++ code
@@ -60,4 +60,3 @@ public:
* End of namespace
*/
}
-