} catch (Throwable t) {
_errors.add(t);
}
// check initialization errors
final ExceptionList errors = this.getErrors();
if (errors.hasErrors()) {
this.getLogger().log(
Level.SEVERE,
"Problem initializing {0}: \n{1}",
new Object[]{this.getClass().getSimpleName(),
errors.toString(false)});
this.setStatus(RuntimeStatus.ERROR);
result = false;
} else {
result = true;
}