Class org.omg.CORBA.SystemException
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.omg.CORBA.SystemException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----org.omg.CORBA.SystemException

public class SystemException
extends RuntimeException
The root class for all CORBA system 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.

Variable Index

 o completed
Did the operation complete?
 o minor
CORBA Exception minor code

Constructor Index

 o SystemException()
The null Constructor, invoked only by direct subclasses.
 o SystemException(int, CompletionStatus)
Constructs a SystemException with the specified minor code and completion status.
 o SystemException(String)
 o SystemException(String, int, CompletionStatus)
Constructs a SystemException with the specified detail message, minor code, and completion status.

Method Index

 o toString()
Convert this exception to a representative string.

Variables

 o minor
  public int minor
CORBA Exception minor code
 o completed
  public CompletionStatus completed
Did the operation complete?

Constructors

 o SystemException
  protected SystemException()
The null Constructor, invoked only by direct subclasses.
 o SystemException
  protected SystemException(String s)
 o SystemException
  protected SystemException(int minor,
                            CompletionStatus completed)
Constructs a SystemException with the specified minor code and completion status.
Parameters:
minor - the minor code
completed - the completion status
 o SystemException
  protected SystemException(String s,
                            int minor,
                            CompletionStatus completed)
Constructs a SystemException with the specified detail message, minor code, and completion status. A detail message is a String that describes this particular exception.
Parameters:
s - the String containing a detail message
minor - the minor code
completed - the completion status

Methods

 o toString
  public String toString()
Convert this exception to a representative string.
Overrides:
toString in class Throwable

All Packages  Class Hierarchy  This Package  Previous  Next  Index