ProcessInfoDocument ret = ProcessInfoDocument.Factory.newInstance();
final TProcessInfo pi = ret.addNewProcessInfo();
try {
ProcessConf pconf = _store.getProcessConfiguration(procid);
if (pconf == null)
throw new ProcessNotFoundException("ProcessNotFound:" + procid);
fillProcessInfo(pi, pconf, custom);
} catch (ManagementException me) {
throw me;
} catch (Exception e) {
__log.error("Exception while retrieving process information", e);