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
RuntimeException
thrown when issues occur with RedisScript
s- Author:
- Jennifer Hickey, Mark Paluch
- See Also:
-
Constructor Summary
ConstructorDescriptionScriptingException
(String msg) Constructs a newScriptingException
instance.ScriptingException
(String msg, Throwable cause) Constructs a newScriptingException
instance. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ScriptingException
Constructs a newScriptingException
instance.- Parameters:
msg
- the detail message.
-
ScriptingException
Constructs a newScriptingException
instance.- Parameters:
msg
- the detail message.cause
- the nested exception.
-