Uses of Class javax.script.ScriptException

Uses in package javax.script

Methods which throw type javax.script.ScriptException

CompiledScript
Compilable.compile(Reader reader)
Retrieves a CompileScript implementation for the script obtained using java.io.Reader as the script source.
CompiledScript
Compilable.compile(String script)
Retrieves a CompileScript implementation for the given piece of script which is a abstraction for the intermediate code produced by the compilation.
Object
AbstractScriptEngine.eval(Reader reader)
Evaluates a piece of script obtained using the specified reader as the script source.
Object
ScriptEngine.eval(Reader reader)
Evaluates a piece of script obtained using the specified reader as the script source.
Object
AbstractScriptEngine.eval(Reader reader, Bindings nameSpace)
Evaluates a piece of scripts obtained using a reader as the script source and using the specified namespace as the SCRIPT_SCOPE.
Object
ScriptEngine.eval(Reader reader, Bindings namespace)
Evaluates a piece of scripts obtained using a reader as the script source and using the specified namespace as the SCRIPT_SCOPE.
Object
ScriptEngine.eval(Reader reader, ScriptContext context)
Evaluates a script obtained using the specified reader as the script source and using the namespaces in the specifed ScriptContext.
Object
AbstractScriptEngine.eval(String script)
Evaluates a piece of script and returns the resultant object.
Object
ScriptEngine.eval(String script)
Evaluates a piece of script and returns the resultant object.
Object
AbstractScriptEngine.eval(String script, Bindings nameSpace)
Evaluates a piece of script using the specified namespace as its SCRIPT_SCOPE.
Object
ScriptEngine.eval(String script, Bindings namespace)
Evaluates a piece of script using the specified namespace as the SCRIPT_SCOPE.
Object
ScriptEngine.eval(String script, ScriptContext context)
Evaluates a script using the namespaces in the specifed ScriptContext.
Object
Re-evaluates the pre-compiled script using the specified namespace as the SCRIPT_SCOPE and using ENGINE_SCOPE, GLOBAL_SCOPE of the associated ScriptEngine.
Object
Re-evaluates the recompiled script using the specified ScriptContext.
Object
Invocable.invoke(Object thiz, String methodName, Object[] args)
Invokes a procedure on an object which already defined in the script using the array of objects as its arguments set.
Object
Invocable.invoke(String methodName, Object[] args)
Invokes a scripting procedure with the given name using the array of objects as its arguments set.

Uses in package php.java.faces

Methods which throw type javax.script.ScriptException

ScriptEngine
PhpFacesContext.getScriptEngine(Object key, URL url)
Get a script engine

Uses in package php.java.script

Methods which throw type javax.script.ScriptException

Object
PhpScriptEngine.eval(Reader reader, ScriptContext context)
Object
Object
PhpScriptEngine.eval(String script, ScriptContext context)
Object
PhpScriptEngine.invoke(Object thiz, String methodName, Object[] args)
Object
PhpScriptEngine.invoke(String methodName, Object[] args)