WeldBootstrap bootstrap = (WeldBootstrap)appInfo.getTransientAppMetaData(WELD_BOOTSTRAP,
WeldBootstrap.class);
if( bootstrap != null ) {
try {
bootstrap.validateBeans();
bootstrap.endInitialization();
} catch (Throwable t) {
DeploymentException de = new DeploymentException(t.getMessage());
de.initCause(t);
throw(de);
}