summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/PSS/PSDL_Code_Gen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/PSS/PSDL_Code_Gen.cpp')
-rw-r--r--TAO/orbsvcs/PSS/PSDL_Code_Gen.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/TAO/orbsvcs/PSS/PSDL_Code_Gen.cpp b/TAO/orbsvcs/PSS/PSDL_Code_Gen.cpp
index f070e65ec31..f503e2f22e8 100644
--- a/TAO/orbsvcs/PSS/PSDL_Code_Gen.cpp
+++ b/TAO/orbsvcs/PSS/PSDL_Code_Gen.cpp
@@ -60,7 +60,6 @@ TAO_PSDL_Code_Gen::set_codec (void)
int
TAO_PSDL_Code_Gen::set_name_obj_ref (const char *name,
const char *string_obj_ref)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
// Invoke the helper encode method which will
// convert the stringified object reference to a CORBA::OctetSeq.
@@ -93,7 +92,6 @@ TAO_PSDL_Code_Gen::set_name_obj_ref (const char *name,
const char *
TAO_PSDL_Code_Gen::get_obj_ref (const char *name)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
// Get from the hash_map saved in the database, the corresponding entry
// (CORBA::OctetSeq *) for the name. Then, decode the octetseq to
@@ -124,7 +122,6 @@ TAO_PSDL_Code_Gen::get_obj_ref (const char *name)
CORBA::OctetSeq *
TAO_PSDL_Code_Gen::encode (const char *string_obj_ref)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
CORBA::Any data;
data <<= string_obj_ref;
@@ -140,7 +137,6 @@ TAO_PSDL_Code_Gen::encode (const char *string_obj_ref)
const char *
TAO_PSDL_Code_Gen::decode (const CORBA::OctetSeq &data)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
const char *extracted_value;