An exception throw by the Workflow Engine.
211212213214215216217218219220221
persistWorkflowInstance(wInst); try { pool.execute(worker); } catch (InterruptedException e) { throw new EngineException(e); } return wInst; }
447448449450451452453454455
// persist by update instRep.updateWorkflowInstance(wInst); } } catch (InstanceRepositoryException e) { e.printStackTrace(); throw new EngineException(e.getMessage()); } }
304305306307308309310311312313314
try { engine.startWorkflow(w, m); } catch (Exception e) { e.printStackTrace(); throw new EngineException( "Engine exception when starting workflow: " + w.getName() + ": Message: " + e.getMessage()); } }
404405406407408409410411412413414
.getXmlRpcWorkflowInstance(wInst); workflowInstances.add(workflowInstance); } } catch (Exception e) { e.printStackTrace(); throw new EngineException( "Exception getting workflow instances by statusfrom workflow engine: Message: " + e.getMessage()); } }
450451452453454455456457458459460
workflowInstances.add(workflowInstance); } return workflowInstances; } catch (Exception e) { e.printStackTrace(); throw new EngineException( "Exception getting workflow instances from workflow engine: Message: " + e.getMessage()); } } else return null;
393394395396397398399400401
349350351352353354355356357358359
449450451452453454455456457458459
495496497498499500501502503504505