diff options
Diffstat (limited to 'TAO/examples/Buffered_AMI')
-rw-r--r-- | TAO/examples/Buffered_AMI/client.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/examples/Buffered_AMI/client.cpp b/TAO/examples/Buffered_AMI/client.cpp index 9a7a9729136..f74694e7d6e 100644 --- a/TAO/examples/Buffered_AMI/client.cpp +++ b/TAO/examples/Buffered_AMI/client.cpp @@ -65,13 +65,13 @@ public: received_all_replies = 1; } - void method_excep (AMI_testExceptionHolder *holder + void method_excep (::Messaging::ExceptionHolder *holder ACE_ENV_ARG_DECL) ACE_THROW_SPEC ((CORBA::SystemException)) { ACE_TRY { - holder->raise_method (ACE_ENV_SINGLE_ARG_PARAMETER); + holder->raise_exception (ACE_ENV_SINGLE_ARG_PARAMETER); ACE_TRY_CHECK; } ACE_CATCH(CORBA::SystemException, ex) @@ -86,13 +86,13 @@ public: { } - void shutdown_excep (AMI_testExceptionHolder *holder + void shutdown_excep (::Messaging::ExceptionHolder *holder ACE_ENV_ARG_DECL) ACE_THROW_SPEC ((CORBA::SystemException)) { ACE_TRY { - holder->raise_shutdown (ACE_ENV_SINGLE_ARG_PARAMETER); + holder->raise_exception (ACE_ENV_SINGLE_ARG_PARAMETER); ACE_TRY_CHECK; } ACE_CATCH(CORBA::SystemException, ex) |