
io.lettuce.core.RedisBusyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lettuce-core Show documentation
Show all versions of lettuce-core Show documentation
Advanced and thread-safe Java Redis client for synchronous, asynchronous, and
reactive usage. Supports Cluster, Sentinel, Pipelining, Auto-Reconnect, Codecs
and much more.
The newest version!
package io.lettuce.core;
/**
* Exception that gets thrown when Redis is busy executing a Lua script with a {@code BUSY} error response.
*
* @author Mark Paluch
* @since 4.5
*/
@SuppressWarnings("serial")
public class RedisBusyException extends RedisCommandExecutionException {
/**
* Create a {@code RedisBusyException} with the specified detail message.
*
* @param msg the detail message.
*/
public RedisBusyException(String msg) {
super(msg);
}
/**
* Create a {@code RedisNoScriptException} with the specified detail message and nested exception.
*
* @param msg the detail message.
* @param cause the nested exception.
*/
public RedisBusyException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy