mirror of
https://github.com/jbowdre/vRealize.git
synced 2024-11-22 18:02:19 +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");
|