192193194195196197198199200201202
continue; } if (webBeansXmlFound) { throw new WebBeansDeploymentException("found more than WEB-INF/beans.xml file!" + webBeansXml); } logger.info("adding the following WEB-INF/beans.xml URL: " + webBeansXml); beanXMLs.add(webBeansXml); webBeansXmlFound = true;
5556575859606162
} } catch(Exception e) { throw new WebBeansDeploymentException(e); } }
7374757677787980
{ configure(); } catch (Exception e) { throw new WebBeansDeploymentException(e); } }
513514515516517518519520521522523
this.xmlConfigurator.configure(fis, fileName); } catch (IOException e) { throw new WebBeansDeploymentException(e); } finally { if (fis != null) {
583584585586587588589590591592593
//configure specialized producer beans. WebBeansUtil.configureProducerMethodSpecializations(); } catch(Exception e) { throw new WebBeansDeploymentException(e); } logger.debug("Checking Specialization constraints has ended."); }
473474475476477478479480481482483
5455565758596061
7273747576777879
169170171172173174175176
if(e instanceof WebBeansDeploymentException) { throw (WebBeansDeploymentException)e; } throw new WebBeansDeploymentException(e); } }
404405406407408409410411412413414