
io.lettuce.core.RedisNoScriptException 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 indicates absence of a Lua script referenced by its SHA1 digest with a {@code NOSCRIPT}
* error response.
*
* @author Mark Paluch
* @since 4.5
*/
@SuppressWarnings("serial")
public class RedisNoScriptException extends RedisCommandExecutionException {
/**
* Create a {@code RedisNoScriptException} with the specified detail message.
*
* @param msg the detail message.
*/
public RedisNoScriptException(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 RedisNoScriptException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy