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

io.lettuce.core.RedisCommandExecutionException 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 for errors states reported by Redis.
 *
 * @author Mark Paluch
 */
@SuppressWarnings("serial")
public class RedisCommandExecutionException extends RedisException {

    /**
     * Create a {@code RedisCommandExecutionException} with the specified detail message.
     *
     * @param msg the detail message.
     */
    public RedisCommandExecutionException(String msg) {
        super(msg);
    }

    /**
     * Create a {@code RedisCommandExecutionException} with the specified detail message and nested exception.
     *
     * @param msg the detail message.
     * @param cause the nested exception.
     */
    public RedisCommandExecutionException(String msg, Throwable cause) {
        super(msg, cause);
    }

    /**
     * Create a {@code RedisCommandExecutionException} with the specified nested exception.
     *
     * @param cause the nested exception.
     */
    public RedisCommandExecutionException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy