ScriptWrapper<Script> wrapper = new GroovyScriptWrapper() { } ... SwingExceptionListener listener = new SwingExceptionListener(); wrapper.addExceptionListener(listener);Then the first exception encountered during the compilation or execution of the script will popup the following window, for example:
SwingExceptionListener
so that all exceptions will trigger the apparition of the error window by:listener.resetWrapperOnDispose(true);In this case, the window will show a "dismiss" option for quitting the widnwo to allow to reset to the default behavior:
public int execute() { var other = context.createScript("otherScript.groovy"); return other.compute(); }and the
otherScript.groovy
code:public String compute() { retun 10; }The error window will be:
compute
hyperlink:Copyright 2019-2020 Herve Girod. All Rights Reserved. Documentation and source under the BSD licence