java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.lettuce.core.RedisException
io.lettuce.core.RedisCommandExecutionException
io.lettuce.core.RedisBusyException
- All Implemented Interfaces:
Serializable
public class RedisBusyException extends RedisCommandExecutionException
Exception that gets thrown when Redis is busy executing a Lua script with a
BUSY error response.- Since:
- 4.5
- Author:
- Mark Paluch
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description RedisBusyException(String msg)Create aRedisBusyExceptionwith the specified detail message.RedisBusyException(String msg, Throwable cause)Create aRedisNoScriptExceptionwith the specified detail message and 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
-
RedisBusyException
Create aRedisBusyExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
RedisBusyException
Create aRedisNoScriptExceptionwith the specified detail message and nested exception.- Parameters:
msg- the detail message.cause- the nested exception.
-