String msg = _strMgr.getString(bAny ? "clusterNotFullyStarted" : "clusterNotStarted", clusterName);
for (int i = 0; i < msgsList.size(); i++) {
msg = msg + "\n" + msgsList.get(i);
}
if (bAny) {
throw new WarningException(msg);
} else {
throw new InstanceException(msg);
}
}
}