RequestScope scope = RequestLog.enterScope
(this, "remoceProcess", new Object[] { process });
try {
((WfProcess)process).remove();
} catch (RemoteException re) {
throw new CannotRemoveException(re.getMessage());
} catch (RemoveException re) {
throw new CannotRemoveException(re.getMessage());
} finally {
scope.leave();
}
}