org.springframework.scripting
Class ScriptCompilationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.core.NestedRuntimeException
                  extended by org.springframework.scripting.ScriptCompilationException
All Implemented Interfaces:
Serializable

public class ScriptCompilationException
extends NestedRuntimeException

Exception to be thrown on script compilation failure.

Since:
2.0
Author:
Juergen Hoeller
See Also:
Serialized Form

Constructor Summary
ScriptCompilationException(ScriptSource scriptSource, String msg, Throwable cause)
          Constructor for ScriptCompilationException.
ScriptCompilationException(ScriptSource scriptSource, Throwable cause)
          Constructor for ScriptCompilationException.
ScriptCompilationException(String msg)
          Constructor for ScriptCompilationException.
ScriptCompilationException(String msg, Throwable cause)
          Constructor for ScriptCompilationException.
 
Method Summary
 ScriptSource getScriptSource()
          Return the source for the offending script.
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMessage, getMostSpecificCause, getRootCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ScriptCompilationException

public ScriptCompilationException(String msg)
Constructor for ScriptCompilationException.

Parameters:
msg - the detail message

ScriptCompilationException

public ScriptCompilationException(String msg,
                                  Throwable cause)
Constructor for ScriptCompilationException.

Parameters:
msg - the detail message
cause - the root cause (usually from using an underlying script compiler API)

ScriptCompilationException

public ScriptCompilationException(ScriptSource scriptSource,
                                  Throwable cause)
Constructor for ScriptCompilationException.

Parameters:
scriptSource - the source for the offending script
cause - the root cause (usually from using an underlying script compiler API)

ScriptCompilationException

public ScriptCompilationException(ScriptSource scriptSource,
                                  String msg,
                                  Throwable cause)
Constructor for ScriptCompilationException.

Parameters:
msg - the detail message
scriptSource - the source for the offending script
cause - the root cause (usually from using an underlying script compiler API)
Method Detail

getScriptSource

public ScriptSource getScriptSource()
Return the source for the offending script.

Returns:
the source, or null if not available