java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.lettuce.core.RedisException
io.lettuce.core.RedisCommandInterruptedException
- All Implemented Interfaces:
Serializable
public class RedisCommandInterruptedException extends RedisException
Exception thrown when the thread executing a redis command is interrupted.
- Author:
- Will Glozer, Mark Paluch
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description RedisCommandInterruptedException(Throwable cause)Create aRedisCommandInterruptedExceptionwith 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
-
RedisCommandInterruptedException
Create aRedisCommandInterruptedExceptionwith the specified nested exception.- Parameters:
cause- the nested exception.
-