summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp')
-rw-r--r--TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp b/TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp
index f8838b1e9f4..6351d93f35a 100644
--- a/TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp
+++ b/TAO/tests/Portable_Interceptors/PolicyFactory/Policy.cpp
@@ -2,6 +2,7 @@
#include "Policy.h"
+#include "tao/SystemException.h"
#include "ace/Log_Msg.h"
ACE_RCSID (PolicyFactory,
@@ -20,21 +21,18 @@ Policy::~Policy (void)
CORBA::ULong
Policy::value (void)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
return this->value_;
}
CORBA::PolicyType
Policy::policy_type (void)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
return Test::POLICY_TYPE;
}
CORBA::Policy_ptr
Policy::copy (void)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
CORBA::Policy_ptr p;
ACE_NEW_THROW_EX (p,
@@ -46,6 +44,5 @@ Policy::copy (void)
void
Policy::destroy (void)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
}