summaryrefslogtreecommitdiff
path: root/TAO/tests/TransportCurrent/lib/Client_Request_Interceptor.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-07 20:08:16 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-07 20:08:16 +0000
commit299f98787262befbfe9109222ccc1f6bcf4f31d5 (patch)
tree6dab6b6ec2c2b3165ef9fdff1d8caee11ba7b8ad /TAO/tests/TransportCurrent/lib/Client_Request_Interceptor.cpp
parent6a52648496d0597da4fa627ba3fcd8b5d35b64f9 (diff)
downloadATCD-299f98787262befbfe9109222ccc1f6bcf4f31d5.tar.gz
Wed Feb 7 20:06:14 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/TransportCurrent/lib/Client_Request_Interceptor.cpp')
-rw-r--r--TAO/tests/TransportCurrent/lib/Client_Request_Interceptor.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tests/TransportCurrent/lib/Client_Request_Interceptor.cpp b/TAO/tests/TransportCurrent/lib/Client_Request_Interceptor.cpp
index f62ed6e1df1..416f20365b5 100644
--- a/TAO/tests/TransportCurrent/lib/Client_Request_Interceptor.cpp
+++ b/TAO/tests/TransportCurrent/lib/Client_Request_Interceptor.cpp
@@ -30,14 +30,14 @@ namespace Test
char *
Client_Request_Interceptor::name (void)
- throw (CORBA::SystemException)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::string_dup ("Client_Request_Interceptor");
}
void
Client_Request_Interceptor::test_transport_current (const ACE_TCHAR* amethod)
- throw (CORBA::SystemException, CORBA::UserException)
+ ACE_THROW_SPEC ((CORBA::SystemException, CORBA::UserException))
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("CRI (%P|%t) Test accessing Transport Current from %s\n"),
@@ -61,13 +61,13 @@ namespace Test
void
Client_Request_Interceptor::destroy (void)
- throw (CORBA::SystemException)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
}
void
Client_Request_Interceptor::send_request (PortableInterceptor::ClientRequestInfo_ptr ri)
- throw (CORBA::SystemException, PortableInterceptor::ForwardRequest)
+ ACE_THROW_SPEC ((CORBA::SystemException, PortableInterceptor::ForwardRequest))
{
//Test TC
test_transport_current ("send_request");
@@ -106,28 +106,28 @@ namespace Test
void
Client_Request_Interceptor::send_poll (PortableInterceptor::ClientRequestInfo_ptr)
- throw (CORBA::SystemException)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
test_transport_current ("send_poll");
}
void
Client_Request_Interceptor::receive_reply (PortableInterceptor::ClientRequestInfo_ptr)
- throw (CORBA::SystemException)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
test_transport_current ("receive_reply");
}
void
Client_Request_Interceptor::receive_exception (PortableInterceptor::ClientRequestInfo_ptr)
- throw (CORBA::SystemException, PortableInterceptor::ForwardRequest)
+ ACE_THROW_SPEC ((CORBA::SystemException, PortableInterceptor::ForwardRequest))
{
test_transport_current ("receive_exception");
}
void
Client_Request_Interceptor::receive_other (PortableInterceptor::ClientRequestInfo_ptr)
- throw (CORBA::SystemException, PortableInterceptor::ForwardRequest)
+ ACE_THROW_SPEC ((CORBA::SystemException, PortableInterceptor::ForwardRequest))
{
test_transport_current ("receive_other");
}