| org.omg.CORBA.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.omg.CORBA.SystemException
All known Subclasses: org.omg.CORBA.DATA_CONVERSION, org.omg.CORBA.INVALID_ACTIVITY, org.omg.CORBA.TIMEOUT, org.omg.CORBA.ACTIVITY_REQUIRED, org.omg.CORBA.TRANSACTION_UNAVAILABLE, org.omg.CORBA.INV_OBJREF, org.omg.CORBA.NO_MEMORY, org.omg.CORBA.REBIND, org.omg.CORBA.BAD_CONTEXT, org.omg.CORBA.BAD_QOS, org.omg.CORBA.INTF_REPOS, org.omg.CORBA.IMP_LIMIT, org.omg.CORBA.INVALID_TRANSACTION, org.omg.CORBA.TRANSIENT, org.omg.CORBA.TRANSACTION_MODE, org.omg.CORBA.CODESET_INCOMPATIBLE, org.omg.CORBA.MARSHAL, org.omg.CORBA.PERSIST_STORE, org.omg.CORBA.UNKNOWN, org.omg.CORBA.BAD_PARAM, org.omg.CORBA.INV_IDENT, org.omg.CORBA.FREE_MEM, org.omg.CORBA.portable.IndirectionException, org.omg.CORBA.INV_FLAG, org.omg.CORBA.COMM_FAILURE, org.omg.CORBA.ACTIVITY_COMPLETED, org.omg.CORBA.OBJECT_NOT_EXIST, org.omg.CORBA.TRANSACTION_ROLLEDBACK, org.omg.CORBA.INITIALIZE, org.omg.CORBA.NO_RESPONSE, org.omg.CORBA.BAD_OPERATION, org.omg.CORBA.NO_IMPLEMENT, org.omg.CORBA.NO_PERMISSION, org.omg.CORBA.OBJ_ADAPTER, org.omg.CORBA.NO_RESOURCES, org.omg.CORBA.INTERNAL, org.omg.CORBA.BAD_INV_ORDER, org.omg.CORBA.TRANSACTION_REQUIRED, org.omg.CORBA.INV_POLICY, org.omg.CORBA.portable.UnknownException, org.omg.CORBA.BAD_TYPECODE,
SystemException | abstract public class SystemException extends java.lang.RuntimeException (Code) | | The root class for all CORBA standard exceptions. These exceptions
may be thrown as a result of any CORBA operation invocation and may
also be returned by many standard CORBA API methods. The standard
exceptions contain a minor code, allowing more detailed specification, and a
completion status. This class is subclassed to
generate each one of the set of standard ORB exceptions.
SystemException extends
java.lang.RuntimeException ; thus none of the
SystemException exceptions need to be
declared in signatures of the Java methods mapped from operations in
IDL interfaces.
See Also: documentation on
* Java IDL exceptions |
Constructor Summary | |
protected | SystemException(String reason, int minor, CompletionStatus completed) Constructs a SystemException exception with the specified detail
message, minor code, and completion status. |
Method Summary | |
public String | toString() Converts this exception to a representative string. |
minor | public int minor(Code) | | The CORBA Exception minor code.
|
SystemException | protected SystemException(String reason, int minor, CompletionStatus completed)(Code) | | Constructs a SystemException exception with the specified detail
message, minor code, and completion status.
A detail message is a String that describes this particular exception.
Parameters: reason - the String containing a detail message Parameters: minor - the minor code Parameters: completed - the completion status |
toString | public String toString()(Code) | | Converts this exception to a representative string.
|
|
|