Exception resulting from a error during a script evaluation.
8586878889909192
LOG.fine("Evaluating un-compiled script using " + language + " script engine "); return engine.eval(scriptSource, bindings); } } catch (ScriptException e) { throw new ScriptEvaluationException("Unable to evaluate script: " + e.getMessage(), e); } }
4041424344454647
String source = getScriptSource(variableScope); try { return scriptEngine.eval(source, bindings); } catch (ScriptException e) { throw new ScriptEvaluationException("Unable to evaluate script: " + e.getMessage(), e); } }