CoherenceTM v3.3
Copyright© 2000-2007 by Oracle Corporation

com.tangosol.net
Class ClusterException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.tangosol.net.ClusterException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
RequestTimeoutException

public class ClusterException
extends RuntimeException

Signals that a cluster related exception of some sort has occurred. This class is the general class of exceptions produced by failed or interrupted cluster operations.

Since:
Coherence 3.2
Author:
gg 2006.06.08

Constructor Summary
ClusterException()
          Constructs a ClusterException with no detail message.
ClusterException(String s)
          Constructs a ClusterException with the specified detail message.
ClusterException(String s, Throwable e)
          Construct a ClusterException from a Throwable object and an additional description.
ClusterException(Throwable e)
          Construct a ClusterException from a Throwable object.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 

Constructor Detail

ClusterException

public ClusterException()
Constructs a ClusterException with no detail message.


ClusterException

public ClusterException(String s)
Constructs a ClusterException with the specified detail message.

Parameters:
s - the String that contains a detailed message

ClusterException

public ClusterException(Throwable e)
Construct a ClusterException from a Throwable object.

Parameters:
e - the Throwable object

ClusterException

public ClusterException(String s,
                        Throwable e)
Construct a ClusterException from a Throwable object and an additional description.

Parameters:
s - the additional description
e - the Throwable object

CoherenceTM v3.3
Copyright© 2000-2007 by Oracle Corporation