Class RedisNoScriptException

  • All Implemented Interfaces:
    Serializable

    public class RedisNoScriptException
    extends RedisCommandExecutionException
    Exception that gets thrown when Redis indicates absence of a Lua script referenced by its SHA1 digest with a NOSCRIPT error response.
    Since:
    4.5
    Author:
    Mark Paluch
    See Also:
    Serialized Form
    • Constructor Detail

      • RedisNoScriptException

        public RedisNoScriptException​(String msg)
        Create a RedisNoScriptException with the specified detail message.
        Parameters:
        msg - the detail message.
      • RedisNoScriptException

        public RedisNoScriptException​(String msg,
                                      Throwable cause)
        Create a RedisNoScriptException with the specified detail message and nested exception.
        Parameters:
        msg - the detail message.
        cause - the nested exception.