summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp
index cc8f022947a..ff196d2d32c 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp
@@ -127,18 +127,18 @@ TAO_PG_ObjectGroupManager::_tao_add_member (
member,
check_type_id);
}
- catch (const PortableGroup::ObjectGroupNotFound& ex)
+ catch (const PortableGroup::ObjectGroupNotFound&)
{
throw CORBA::INTERNAL ();
}
- catch (const PortableGroup::MemberAlreadyPresent& ex)
+ catch (const PortableGroup::MemberAlreadyPresent&)
{
if (propagate_member_already_present)
throw;
else
throw CORBA::INTERNAL ();
}
- catch (const PortableGroup::ObjectNotAdded& ex)
+ catch (const PortableGroup::ObjectNotAdded&)
{
throw PortableGroup::NoFactory (the_location, type_id);
}