156157158159160161162163164165166
} private void reportFailure(int exitC, String text) { this.exitCode.set(exitC); //error ServiceLaunchException execEx = new ServiceLaunchException(exitC, text); log.debug("Noting failure", execEx); noteFailure(execEx); }
180181182183184185186187188
} } private void reportFailure(int code, String text) { //error ServiceLaunchException execEx = new ServiceLaunchException(code, text); LOG.debug("Noting failure", execEx); noteFailure(execEx); }