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. |
| 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 |
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 messageoriginalThrowable - the original Throwable object.
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.