message = "Check the $RESIN_HOME/libexec or $RESIN_HOME/libexec64 directory for libresin_os.so.";
throw new ConfigException(L.l("<group-name> requires compiled JNI.\n{0}", message));
}
ActorClient conn = null;
try {
conn = getConnection();
ResultStatus status = (ResultStatus)
conn.querySet(WATCHDOG_JID, new WatchdogStartQuery(argv), BAM_TIMEOUT);
if (status.isSuccess())
return;
throw new ConfigException(L.l("{0}: watchdog start failed because of '{1}'",
this, status.getMessage()));
} catch (RemoteConnectionFailedException e) {
log.log(Level.FINE, e.toString(), e);
} catch (RuntimeException e) {
throw e;
} finally {
if (conn != null)
conn.close();
}
launchManager(argv);
}