summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/chat/Broadcaster_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/chat/Broadcaster_i.h')
-rw-r--r--TAO/examples/Simple/chat/Broadcaster_i.h17
1 files changed, 3 insertions, 14 deletions
diff --git a/TAO/examples/Simple/chat/Broadcaster_i.h b/TAO/examples/Simple/chat/Broadcaster_i.h
index fd528d0ad45..2b4958ef096 100644
--- a/TAO/examples/Simple/chat/Broadcaster_i.h
+++ b/TAO/examples/Simple/chat/Broadcaster_i.h
@@ -46,27 +46,16 @@ public:
virtual void add (Receiver_ptr receiver,
const char *nickname,
- CORBA::Environment &TAO_TRY_ENV)
- ACE_THROW_SPEC ((
- CORBA::SystemException,
- Broadcaster::CannotAdd
- ));
+ CORBA::Environment &TAO_TRY_ENV);
// Saves receiver references in a list.
virtual void remove (Receiver_ptr receiver,
- CORBA::Environment &TAO_TRY_ENV)
- ACE_THROW_SPEC ((
- CORBA::SystemException,
- Broadcaster::CannotRemove
- ));
+ CORBA::Environment &TAO_TRY_ENV);
// Removes receiver references from the list.
virtual void say (Receiver_ptr receiver,
const char *text,
- CORBA::Environment &TAO_TRY_ENV)
- ACE_THROW_SPEC ((
- CORBA::SystemException
- ));
+ CORBA::Environment &TAO_TRY_ENV);
// Called by Broadcaster clients to send messages.
public: