151152153154155156157158159160161
//execute the process Map<String,Object> result = null; Throwable error = null; try { Process p = pf.create(processName); result = p.execute( inputs, null ); } catch( Throwable t ) { //save the error to report back error = t; }