org.apache.yoko.orb.OB
Interface UnknownExceptionInfoOperations

All Known Subinterfaces:
UnknownExceptionInfo
All Known Implementing Classes:
UnknownExceptionInfo_impl

public interface UnknownExceptionInfoOperations

Information about the context in which the unknown exception occurred.


Method Summary
 String describe_exception()
          Obtains a description of the exception.
 String operation()
          The name of the operation that the servant was executing.
 void raise_exception()
          Raises the unknown exception.
 boolean response_expected()
          Indicates whether the client is expecting a response to this invocation.
 TransportInfo transport_info()
          Obtains information about the transport on which this request was received.
 

Method Detail

operation

String operation()
The name of the operation that the servant was executing.

Returns:
The operation name.

response_expected

boolean response_expected()
Indicates whether the client is expecting a response to this invocation.

Returns:
TRUE if the client expects a response, FALSE otherwise.

transport_info

TransportInfo transport_info()
Obtains information about the transport on which this request was received.

Returns:
The transport information, or NULL if the request was made on a collocated servant.

describe_exception

String describe_exception()
Obtains a description of the exception. For example, in Java this returns the exception stack trace. Calling this operation in C++ will raise CORBA::NO_IMPLEMENT.

Returns:
The exception description.

raise_exception

void raise_exception()
Raises the unknown exception.



Copyright © 2006-2011 Apache Software Foundation. All Rights Reserved.