mirror of
https://github.com/jbowdre/vRealize.git
synced 2024-11-24 18:42:18 +00:00
8 lines
245 B
JavaScript
8 lines
245 B
JavaScript
|
/* JavaScript: exception handler
|
||
|
Log the exception and release the lock.
|
||
|
Inputs: none
|
||
|
Outputs: none
|
||
|
*/
|
||
|
System.error("Workflow execution failed!");
|
||
|
System.debug("Releasing lock...");
|
||
|
LockingSystem.unlock("namingLock", "eventBroker");
|