All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.lettuce.core.RedisBusyException Maven / Gradle / Ivy

Go to download

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