summaryrefslogtreecommitdiff
path: root/TAO/tao/RTCORBA/RT_Stub.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-02 14:12:41 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-02 14:12:41 +0000
commit050e4f078bdad66a3df6bdc7267b71d8b3320eb9 (patch)
tree264e59021031e5a41ff10857549b58e9417c4014 /TAO/tao/RTCORBA/RT_Stub.cpp
parent30172978dd2d880270a2665f3adcd9ad99c81bb7 (diff)
downloadATCD-050e4f078bdad66a3df6bdc7267b71d8b3320eb9.tar.gz
Fri Feb 2 14:07:14 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/RTCORBA/RT_Stub.cpp')
-rw-r--r--TAO/tao/RTCORBA/RT_Stub.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/RTCORBA/RT_Stub.cpp b/TAO/tao/RTCORBA/RT_Stub.cpp
index 1e69053a4cf..84691dc0a24 100644
--- a/TAO/tao/RTCORBA/RT_Stub.cpp
+++ b/TAO/tao/RTCORBA/RT_Stub.cpp
@@ -173,7 +173,7 @@ TAO_RT_Stub::set_policy_overrides (const CORBA::PolicyList & policies,
if (type == RTCORBA::PRIORITY_MODEL_POLICY_TYPE ||
type == RTCORBA::THREADPOOL_POLICY_TYPE ||
type == RTCORBA::SERVER_PROTOCOL_POLICY_TYPE)
- ACE_THROW_RETURN (CORBA::NO_PERMISSION (), 0);
+ throw ::CORBA::NO_PERMISSION ();
}
}
@@ -224,7 +224,7 @@ TAO_RT_Stub::effective_priority_banded_connection (void)
// Both override and exposed have been set and neither has empty
// priority bands. This is illegal (ptc/99-05-03, sec. 4.12.1).
- ACE_THROW_RETURN (CORBA::INV_POLICY (), 0);
+ throw ::CORBA::INV_POLICY ();
}
CORBA::Policy *
@@ -270,7 +270,7 @@ TAO_RT_Stub::effective_client_protocol (void)
// Both override and exposed have been set and neither has empty
// protocols. This is illegal (ptc/99-05-03, sec. 4.15.4).
- ACE_THROW_RETURN (CORBA::INV_POLICY (), 0);
+ throw ::CORBA::INV_POLICY ();
}
TAO_END_VERSIONED_NAMESPACE_DECL