getScriptException
java.lang.Exception scriptEventData.getScriptException ( )
Description
Returns the ScriptException for the object.
Parameters
This method does not receive any parameters.
Return Values
Returns the ScriptException for the object.
Change Log
Version |
Description |
6.0.55a |
Available for all editions. |
Examples
Get the script exception
public Object handleEvent(EventFireTime fireTime, ScriptEventData data) {
java.lang.Exception e = data.getScriptException();
// do something
}