jet.server.api.cluster
Class ClusterException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--jet.server.api.cluster.ClusterException
All Implemented Interfaces:
java.io.Serializable

public class ClusterException
extends java.lang.Exception

The ClusterException class provides information on a remote member access error.

Since:
5.0
See Also:
Serialized Form

Constructor Summary
ClusterException(java.lang.String reason)
          Construct a ClusterException .
ClusterException(java.lang.String msg, java.lang.Throwable originalThrowable)
          Construct a new ClusterException with the message and the original Throwable object.
 
Method Summary
 java.lang.Throwable getOriginalThrowable()
          Get the original Throwable object.
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ClusterException

public ClusterException(java.lang.String reason)
Construct a ClusterException .

Parameters:
reason - a description of the exception

ClusterException

public ClusterException(java.lang.String msg,
                        java.lang.Throwable originalThrowable)
Construct a new ClusterException with the message and the original Throwable object.

Parameters:
msg - the detailed message
originalThrowable - the original Throwable object.
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Throwable

getOriginalThrowable

public java.lang.Throwable getOriginalThrowable()
Get the original Throwable object.

Returns:
the original Throwable object.