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 Summary
Constructors 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 Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IgniteFuture<?>
retryReadyFuture()
void
retryReadyFuture(IgniteFuture<?> readyFut)
-
Methods inherited from class org.apache.ignite.IgniteException
getCause, hasCause, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
ClusterTopologyException
public ClusterTopologyException(String msg)
Creates new topology exception with given error message.- Parameters:
msg
- Error message.
-
-
Method Detail
-
retryReadyFuture
public IgniteFuture<?> retryReadyFuture()
- Returns:
- Retry ready future.
-
retryReadyFuture
public void retryReadyFuture(IgniteFuture<?> readyFut)
- Parameters:
readyFut
- Retry ready future.
-
-