Class org.omg.CORBA.INITIALIZE
All Packages Class Hierarchy This Package Previous Next Index
Class org.omg.CORBA.INITIALIZE
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.lang.RuntimeException
|
+----org.omg.CORBA.SystemException
|
+----org.omg.CORBA.INITIALIZE
- public final class INITIALIZE
- extends SystemException
The CORBA INITIALIZE exception.
These exceptions
may be thrown as a result of a CORBA INITIALIZE and may
also be returned by many standard CORBA API methods. It
contains a minor code, allowing more detailed specification, and a
completion status.
-
INITIALIZE()
- Constructs a INITIALIZE with a default minor code
of 0 and a completion state of COMPLETED_MAYBE.
-
INITIALIZE(int, CompletionStatus)
- Constructs a INITIALIZE with the specified
minor code and completion status.
-
INITIALIZE(String)
- Constructs a INITIALIZE with the specified detail.
-
INITIALIZE(String, int, CompletionStatus)
- Constructs a INITIALIZE with the specified detail
message, minor code, and completion status.
INITIALIZE
public INITIALIZE()
- Constructs a INITIALIZE with a default minor code
of 0 and a completion state of COMPLETED_MAYBE.
INITIALIZE
public INITIALIZE(String s)
- Constructs a INITIALIZE with the specified detail.
- Parameters:
- s - the String containing a detail message
INITIALIZE
public INITIALIZE(int minor,
CompletionStatus completed)
- Constructs a INITIALIZE with the specified
minor code and completion status.
- Parameters:
- minor - the minor code
- completed - the completion status
INITIALIZE
public INITIALIZE(String s,
int minor,
CompletionStatus completed)
- Constructs a INITIALIZE 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
All Packages Class Hierarchy This Package Previous Next Index