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