diff options
author | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-05-20 15:46:59 +0000 |
---|---|---|
committer | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-05-20 15:46:59 +0000 |
commit | 963520d643248373f8a1b7cb376f06d480bc1b9e (patch) | |
tree | f7d16cb4c2dd3ef180d05dae6df049a0844a083d /TAO/tests/Object_Loader | |
parent | 94dcd75d1263ad5d33319b5dcab5d9174bbbabb2 (diff) | |
download | ATCD-963520d643248373f8a1b7cb376f06d480bc1b9e.tar.gz |
ChangeLogTag: Sun May 20 10:43:02 2001 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/tests/Object_Loader')
-rw-r--r-- | TAO/tests/Object_Loader/Test_i.cpp | 6 | ||||
-rw-r--r-- | TAO/tests/Object_Loader/Test_i.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tests/Object_Loader/Test_i.cpp b/TAO/tests/Object_Loader/Test_i.cpp index 1269a3e1d5d..5f4ed5a86e1 100644 --- a/TAO/tests/Object_Loader/Test_i.cpp +++ b/TAO/tests/Object_Loader/Test_i.cpp @@ -19,14 +19,14 @@ Test_i::Test_i (PortableServer::POA_ptr poa) CORBA::Long Test_i::instance_count (CORBA::Environment &) - ACE_THROW_SPEC (()) + ACE_THROW_SPEC ((CORBA::SystemException)) { return Test_i::instance_count_; } void Test_i::destroy (CORBA::Environment &ACE_TRY_ENV) - ACE_THROW_SPEC (()) + ACE_THROW_SPEC ((CORBA::SystemException)) { PortableServer::POA_var poa = this->_default_POA (ACE_TRY_ENV); @@ -40,7 +40,7 @@ Test_i::destroy (CORBA::Environment &ACE_TRY_ENV) PortableServer::POA_ptr Test_i::_default_POA (CORBA::Environment &) - ACE_THROW_SPEC (()) + ACE_THROW_SPEC ((CORBA::SystemException)) { return PortableServer::POA::_duplicate (this->poa_.in ()); } diff --git a/TAO/tests/Object_Loader/Test_i.h b/TAO/tests/Object_Loader/Test_i.h index 1081689864d..06ecfd828b7 100644 --- a/TAO/tests/Object_Loader/Test_i.h +++ b/TAO/tests/Object_Loader/Test_i.h @@ -38,13 +38,13 @@ public: // ctor CORBA::Long instance_count (CORBA::Environment &) - ACE_THROW_SPEC (()); + ACE_THROW_SPEC ((CORBA::SystemException)); void destroy (CORBA::Environment &) - ACE_THROW_SPEC (()); + ACE_THROW_SPEC ((CORBA::SystemException)); PortableServer::POA_ptr _default_POA (CORBA::Environment &) - ACE_THROW_SPEC (()); + ACE_THROW_SPEC ((CORBA::SystemException)); private: PortableServer::POA_var poa_; |