Class ScriptingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.data.redis.core.script.ScriptingException
- All Implemented Interfaces:
Serializable
public class ScriptingException
extends org.springframework.core.NestedRuntimeException
RuntimeException thrown when issues occur with RedisScripts- Author:
- Jennifer Hickey, Mark Paluch
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionScriptingException(String msg) Constructs a newScriptingExceptioninstance.ScriptingException(String msg, Throwable cause) Constructs a newScriptingExceptioninstance. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ScriptingException
Constructs a newScriptingExceptioninstance.- Parameters:
msg- the detail message.
-
ScriptingException
Constructs a newScriptingExceptioninstance.- Parameters:
msg- the detail message.cause- the nested exception.
-