Package org.apache.ignite.cluster
Class ClusterTopologyException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.IgniteException
- 
- org.apache.ignite.cluster.ClusterTopologyException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 - Direct Known Subclasses:
- ClusterGroupEmptyException
 
 public class ClusterTopologyException extends IgniteException This exception is used to indicate error with the cluster topology (e.g., crashed node, etc.).- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ClusterTopologyException(String msg)Creates new topology exception with given error message.ClusterTopologyException(String msg, @Nullable Throwable cause)Creates new topology exception with given error message and optional nested exception.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description IgniteFuture<?>retryReadyFuture()voidretryReadyFuture(IgniteFuture<?> readyFut)- 
Methods inherited from class org.apache.ignite.IgniteExceptiongetCause, hasCause, toString
 - 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
- 
 
- 
- 
- 
Constructor Detail- 
ClusterTopologyExceptionpublic ClusterTopologyException(String msg) Creates new topology exception with given error message.- Parameters:
- msg- Error message.
 
 
- 
 - 
Method Detail- 
retryReadyFuturepublic IgniteFuture<?> retryReadyFuture() - Returns:
- Retry ready future.
 
 - 
retryReadyFuturepublic void retryReadyFuture(IgniteFuture<?> readyFut) - Parameters:
- readyFut- Retry ready future.
 
 
- 
 
-