类 ScriptCompilationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cn.taketoday.core.NestedRuntimeException
cn.taketoday.scripting.ScriptCompilationException
- 所有已实现的接口:
Serializable
public class ScriptCompilationException
extends cn.taketoday.core.NestedRuntimeException
Exception to be thrown on script compilation failure.
- 从以下版本开始:
- 4.0
- 作者:
- Juergen Hoeller
- 另请参阅:
-
构造器概要
构造器构造器说明ScriptCompilationException(ScriptSource scriptSource, String msg) Constructor for ScriptCompilationException.ScriptCompilationException(ScriptSource scriptSource, String msg, Throwable cause) Constructor for ScriptCompilationException.ScriptCompilationException(ScriptSource scriptSource, Throwable cause) Constructor for ScriptCompilationException.Constructor for ScriptCompilationException.ScriptCompilationException(String msg, Throwable cause) Constructor for ScriptCompilationException. -
方法概要
从类继承的方法 cn.taketoday.core.NestedRuntimeException
contains, getMostSpecificCause, getNestedMessage, getRootCause
-
构造器详细资料
-
ScriptCompilationException
Constructor for ScriptCompilationException.- 参数:
msg- the detail message
-
ScriptCompilationException
Constructor for ScriptCompilationException.- 参数:
msg- the detail messagecause- the root cause (usually from using an underlying script compiler API)
-
ScriptCompilationException
Constructor for ScriptCompilationException.- 参数:
scriptSource- the source for the offending scriptmsg- the detail message- 从以下版本开始:
- 4.0
-
ScriptCompilationException
Constructor for ScriptCompilationException.- 参数:
scriptSource- the source for the offending scriptcause- the root cause (usually from using an underlying script compiler API)
-
ScriptCompilationException
Constructor for ScriptCompilationException.- 参数:
scriptSource- the source for the offending scriptmsg- the detail messagecause- the root cause (usually from using an underlying script compiler API)
-
-
方法详细资料
-
getScriptSource
Return the source for the offending script.- 返回:
- the source, or
nullif not available
-