org.omg.CORBA
Class TRANSIENT

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--org.omg.CORBA.SystemException
                          |
                          +--org.omg.CORBA.TRANSIENT
All Implemented Interfaces:
java.io.Serializable

public class TRANSIENT
extends SystemException

TRANSIENT indicates that the ORB attempted to reach an object and failed. It is not an indication that an object does not exist. Instead, it simply means that no further determination of an object?s status was possible because it could not be reached. This exception is raised if an attempt to establish a connection fails, for example, because the server or the implementation repository is down.

See Also:
Serialized Form

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

Constructor Detail

TRANSIENT

public TRANSIENT()
Default constructor

TRANSIENT

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

TRANSIENT

public TRANSIENT(int minor,
                 CompletionStatus completed)
Constructor with fields initialization
Parameters:
minor - minor exception member
completed - completed exception member

TRANSIENT

public TRANSIENT(java.lang.String orb_reason,
                 int minor,
                 CompletionStatus completed)
Full constructor with fields initialization
Parameters:
minor - minor exception member
completed - completed exception member