java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.lettuce.core.RedisException
io.lettuce.core.RedisCommandTimeoutException
- All Implemented Interfaces:
Serializable
public class RedisCommandTimeoutException extends RedisException
Exception thrown when the command waiting timeout is exceeded.
- Author:
- Mark Paluch
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description RedisCommandTimeoutException()Create aRedisCommandTimeoutExceptionwith a default message.RedisCommandTimeoutException(String msg)Create aRedisCommandTimeoutExceptionwith the specified detail message.RedisCommandTimeoutException(Throwable cause)Create aRedisExceptionwith 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
-
RedisCommandTimeoutException
public RedisCommandTimeoutException()Create aRedisCommandTimeoutExceptionwith a default message. -
RedisCommandTimeoutException
Create aRedisCommandTimeoutExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
RedisCommandTimeoutException
Create aRedisExceptionwith the specified nested exception.- Parameters:
cause- the nested exception.
-