summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/chat/Receiver_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/chat/Receiver_i.h')
-rw-r--r--TAO/examples/Simple/chat/Receiver_i.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/TAO/examples/Simple/chat/Receiver_i.h b/TAO/examples/Simple/chat/Receiver_i.h
index c0ec2f98fc2..324abe03ffe 100644
--- a/TAO/examples/Simple/chat/Receiver_i.h
+++ b/TAO/examples/Simple/chat/Receiver_i.h
@@ -38,10 +38,16 @@ public:
// Destructor.
virtual void message (const char *msg,
- CORBA::Environment &TAO_TRY_ENV);
+ CORBA::Environment &TAO_TRY_ENV)
+ ACE_THROW_SPEC ((
+ CORBA::SystemException
+ ));
// Receives a message string.
- virtual void shutdown (CORBA::Environment &TAO_TRY_ENV);
+ virtual void shutdown (CORBA::Environment &TAO_TRY_ENV)
+ ACE_THROW_SPEC ((
+ CORBA::SystemException
+ ));
// Called when the chat server is going away. The client
// implementation should shutdown the chat client in response to
// this.