java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.lettuce.core.RedisException
io.lettuce.core.RedisCommandExecutionException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BatchException,RedisBusyException,RedisLoadingException,RedisNoScriptException
public class RedisCommandExecutionException extends RedisException
Exception for errors states reported by Redis.
- Author:
- Mark Paluch
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description RedisCommandExecutionException(String msg)Create aRedisCommandExecutionExceptionwith the specified detail message.RedisCommandExecutionException(String msg, Throwable cause)Create aRedisCommandExecutionExceptionwith the specified detail message and nested exception.RedisCommandExecutionException(Throwable cause)Create aRedisCommandExecutionExceptionwith the specified nested exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RedisCommandExecutionException
Create aRedisCommandExecutionExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
RedisCommandExecutionException
Create aRedisCommandExecutionExceptionwith the specified detail message and nested exception.- Parameters:
msg- the detail message.cause- the nested exception.
-
RedisCommandExecutionException
Create aRedisCommandExecutionExceptionwith the specified nested exception.- Parameters:
cause- the nested exception.
-