CORBAException
is a base class for all system and user-defined exception classes. Programmers need never instantiate this class directly, but the methods of this class are inherited by class CORBA.SystemException
and CORBA.UserException
.
// Java package IE.Iona.Orbix2.CORBA; public class CORBAException extends java.lang.Exception implements Marshalable { // Methods public String id(); public String toString(); public Request _request(); }
CORBA.SystemException
CORBA.UserException
public String id();
public String toString();
public Request _request();
Request
object on which the exception was thrown, or null
if the exception was not thrown on a request. This is required when using the method CORBA.ORB.get_next_response()
.
CORBA.ORB.get_next_response()