summaryrefslogtreecommitdiff
path: root/TAO/examples/Callback_Quoter/Notifier_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Callback_Quoter/Notifier_i.cpp')
-rw-r--r--TAO/examples/Callback_Quoter/Notifier_i.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/TAO/examples/Callback_Quoter/Notifier_i.cpp b/TAO/examples/Callback_Quoter/Notifier_i.cpp
index 5448a187d08..f98cc97b1be 100644
--- a/TAO/examples/Callback_Quoter/Notifier_i.cpp
+++ b/TAO/examples/Callback_Quoter/Notifier_i.cpp
@@ -38,8 +38,6 @@ void
Notifier_i::register_callback (const char *stock_name,
CORBA::Long threshold_value,
Callback_Quoter::Consumer_ptr consumer_handler)
- ACE_THROW_SPEC ((CORBA::SystemException,
- Callback_Quoter::Invalid_Stock))
{
// Store the client information.
Consumer_Data consumer_data;
@@ -107,8 +105,6 @@ Notifier_i::orb (CORBA::ORB_ptr orb)
void
Notifier_i::unregister_callback (Callback_Quoter::Consumer_ptr consumer)
- ACE_THROW_SPEC ((CORBA::SystemException,
- Callback_Quoter::Invalid_Handle))
{
// The consumer_map consists of a map of stocknames with consumers
// and their threshold values attached to it. To unregister a
@@ -154,7 +150,6 @@ Notifier_i::unregister_callback (Callback_Quoter::Consumer_ptr consumer)
void
Notifier_i::market_status (const char *stock_name,
CORBA::Long stock_value)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"Notifier_i:: The stockname is %s with price %d\n",
@@ -202,7 +197,6 @@ Notifier_i::market_status (const char *stock_name,
void
Notifier_i::shutdown (void)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
if ( this->consumer_map_.close () > 0)
ACE_ERROR ((LM_ERROR,