summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/ECG_Reactive_ConsumerEC_Control.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/ECG_Reactive_ConsumerEC_Control.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/ECG_Reactive_ConsumerEC_Control.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/ECG_Reactive_ConsumerEC_Control.cpp b/TAO/orbsvcs/orbsvcs/Event/ECG_Reactive_ConsumerEC_Control.cpp
index 1afd6de48ae..1a3c54d765e 100644
--- a/TAO/orbsvcs/orbsvcs/Event/ECG_Reactive_ConsumerEC_Control.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/ECG_Reactive_ConsumerEC_Control.cpp
@@ -46,18 +46,18 @@ TAO_ECG_Reactive_ConsumerEC_Control::query_eventchannel ()
this->event_channel_not_exist (gateway_);
}
}
- catch (const CORBA::OBJECT_NOT_EXIST& ex)
+ catch (const CORBA::OBJECT_NOT_EXIST&)
{
this->event_channel_not_exist (gateway_);
}
- catch (const CORBA::TRANSIENT& transient)
+ catch (const CORBA::TRANSIENT&)
{
// This is TAO's minor code for a failed connection, we may
// want to be more lenient in the future..
// if (transient.minor () == 0x54410085)
this->event_channel_not_exist (gateway_);
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
// Ignore all exceptions
}
@@ -98,7 +98,7 @@ TAO_ECG_Reactive_ConsumerEC_Control::handle_timeout (
policies[i]->destroy ();
}
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
// Ignore all exceptions
}
@@ -142,7 +142,7 @@ TAO_ECG_Reactive_ConsumerEC_Control::activate (void)
return -1;
}
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
return -1;
}
@@ -198,7 +198,7 @@ TAO_ECG_Reactive_ConsumerEC_Control::system_exception (
gateway->cleanup_consumer_proxies ();
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
// Ignore all exceptions..
}