org.omg.CORBA
Class UNKNOWN

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.omg.CORBA.SystemException
                  extended by org.omg.CORBA.UNKNOWN
All Implemented Interfaces:
java.io.Serializable

public class UNKNOWN
extends SystemException

This exception is raised if an operation implementation throws a non-CORBA exception (such as an exception specific to the implementation's programming language), or if an operation raises a user exception that does not appear in the operation's raises expression. UNKNOWN is also raised if the server returns a system exception that is unknown to the client. (This can happen if the server uses a later version of CORBA than the client and new system exceptions have been added to the later version.)

See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.omg.CORBA.SystemException
completed, minor
 
Constructor Summary
UNKNOWN()
          Default constructor
UNKNOWN(int minor, CompletionStatus completed)
          Constructor with fields initialization
UNKNOWN(java.lang.String orb_reason)
          Constructor with reason string
UNKNOWN(java.lang.String orb_reason, int minor, CompletionStatus completed)
          Full constructor with fields initialization
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UNKNOWN

public UNKNOWN()
Default constructor


UNKNOWN

public UNKNOWN(java.lang.String orb_reason)
Constructor with reason string


UNKNOWN

public UNKNOWN(int minor,
               CompletionStatus completed)
Constructor with fields initialization

Parameters:
minor - minor exception member
completed - completed exception member

UNKNOWN

public UNKNOWN(java.lang.String orb_reason,
               int minor,
               CompletionStatus completed)
Full constructor with fields initialization

Parameters:
minor - minor exception member
completed - completed exception member