summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/POA_Current.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/POA_Current.h')
-rw-r--r--TAO/tao/PortableServer/POA_Current.h16
1 files changed, 4 insertions, 12 deletions
diff --git a/TAO/tao/PortableServer/POA_Current.h b/TAO/tao/PortableServer/POA_Current.h
index 57a97f0e37e..204190abccd 100644
--- a/TAO/tao/PortableServer/POA_Current.h
+++ b/TAO/tao/PortableServer/POA_Current.h
@@ -48,18 +48,14 @@ namespace TAO
* Can raise the @c NoContext exception if this function is
* not invoked in the context of an upcall.
*/
- PortableServer::POA_ptr get_POA (void)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableServer::Current::NoContext));
+ PortableServer::POA_ptr get_POA (void);
/**
* Returns the object id of the current request being invoked. Can
* raise the @c NoContext exception if this function is not
* invoked in the context of an upcall.
*/
- PortableServer::ObjectId *get_object_id (void)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableServer::Current::NoContext));
+ PortableServer::ObjectId *get_object_id (void);
/**
* This operation returns a locally manufactured reference to the object
@@ -70,18 +66,14 @@ namespace TAO
* Object::is_equivalent operation to compare the two references may not
* necessarily return true.
*/
- CORBA::Object_ptr get_reference (void)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableServer::Current::NoContext));
+ CORBA::Object_ptr get_reference (void);
/**
* Returns a reference to the servant that hosts the object in whose
* context it is called. If called outside the context of the POA
* dispatched operation, a NoContext exception is raised
*/
- PortableServer::Servant get_servant (void)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableServer::Current::NoContext));
+ PortableServer::Servant get_servant (void);
/// Returns the class that implements this interface.
POA_Current_Impl *implementation (void);