Simple question - I need to be able to terminate execution of my script under certain conditions, for example :
if (unrecoverableErrorCondition) {
exit();
}
But I exit() doesn’t do it, nor does System.exit(), return, or any of the usual candidates. I don’t see anything under DzScriptContext or DzSystem for this either. How is this best done?
Thanks


