log.debug("Skipping recursion - lazy delete");
return;
}
}
OperationInvoker operationInvoker = opsSystem.getInjector().getInstance(OperationInvoker.class);
try {
operationInvoker.invoke(target);
} catch (IllegalArgumentException e) {
throw new OpsException("Error invoking method on " + target.getClass(), e);
} catch (IllegalAccessException e) {
throw new OpsException("Error invoking method on " + target.getClass(), e);
} catch (InvocationTargetException e) {