summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Support.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Support.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Support.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Support.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Support.cpp
index 71c22906cae..9b6996230c1 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Support.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Properties_Support.cpp
@@ -27,23 +27,17 @@ TAO::PG_Properties_Support::~PG_Properties_Support ()
void TAO::PG_Properties_Support::set_default_property (const char * name,
const PortableGroup::Value & value)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
this->default_properties_.set_property(name, value);
}
void TAO::PG_Properties_Support::set_default_properties (const PortableGroup::Properties & props)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
this->default_properties_.decode (props);
}
PortableGroup::Properties *
TAO::PG_Properties_Support::get_default_properties ()
- ACE_THROW_SPEC ((
- CORBA::SystemException,
- PortableGroup::InvalidProperty,
- PortableGroup::UnsupportedProperty))
{
PortableGroup::Properties_var result;
ACE_NEW_THROW_EX ( result, PortableGroup::Properties(), CORBA::NO_MEMORY());
@@ -53,7 +47,6 @@ TAO::PG_Properties_Support::get_default_properties ()
void TAO::PG_Properties_Support::remove_default_properties (
const PortableGroup::Properties & props)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
this->default_properties_.remove (props);
}
@@ -62,9 +55,6 @@ void
TAO::PG_Properties_Support::set_type_properties (
const char *type_id,
const PortableGroup::Properties & overrides)
- ACE_THROW_SPEC ( (CORBA::SystemException,
- PortableGroup::InvalidProperty,
- PortableGroup::UnsupportedProperty))
{
ACE_GUARD (TAO_SYNCH_MUTEX, guard, this->internals_);
@@ -84,7 +74,6 @@ TAO::PG_Properties_Support::set_type_properties (
PortableGroup::Properties *
TAO::PG_Properties_Support::get_type_properties (
const char *type_id)
- ACE_THROW_SPEC ( (CORBA::SystemException))
{
PortableGroup::Properties_var result;
ACE_NEW_THROW_EX (result, PortableGroup::Properties(), CORBA::NO_MEMORY ());
@@ -103,7 +92,6 @@ void
TAO::PG_Properties_Support::remove_type_properties (
const char *type_id,
const PortableGroup::Properties & props)
- ACE_THROW_SPEC ( (CORBA::SystemException))
{
// NOTE: do not actually delete the properties for this type.
// There may be object groups depending on these.
@@ -123,7 +111,6 @@ TAO::PG_Properties_Support::remove_type_properties (
TAO::PG_Property_Set *
TAO::PG_Properties_Support::find_typeid_properties (
const char *type_id)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, guard, this->internals_, 0);