Class ClusterCommandExecutionFailureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
org.springframework.dao.NonTransientDataAccessException
org.springframework.dao.UncategorizedDataAccessException
org.springframework.data.redis.connection.ClusterCommandExecutionFailureException
- All Implemented Interfaces:
Serializable
public class ClusterCommandExecutionFailureException
extends org.springframework.dao.UncategorizedDataAccessException
Exception thrown when at least one call to a clustered redis environment fails.
- Since:
- 1.7
- Author:
- Christoph Strobl, Mark Paluch
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates newClusterCommandExecutionFailureException
.ClusterCommandExecutionFailureException
(List<? extends Throwable> causes) Creates newClusterCommandExecutionFailureException
. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ClusterCommandExecutionFailureException
Creates newClusterCommandExecutionFailureException
.- Parameters:
cause
- must not be null.
-
ClusterCommandExecutionFailureException
Creates newClusterCommandExecutionFailureException
.- Parameters:
causes
- must not be empty.
-