761762763764765766767768769770771
this.ejbContainers.put(con.getObjectName(), con); Ejb3Registry.register(con); } catch (Throwable t) { throw new DeploymentException( "Error creating ejb container " + con.getEjbName() + ": " + t.getMessage(), t); } } }
790791792793794795796797798799800
this.ejbContainers.put(con.getObjectName(), con); Ejb3Registry.register(con); } catch (Throwable t) { throw new DeploymentException( "Error creating ejb container " + con.getEjbName() + ": " + t.getMessage(), t); } } } }
699700701702703704705706707708709
751752753754755756757758759760761
780781782783784785786787788789790
384385386387388389390391392393394
{ log.warn("Could not find the queue destination-jndi-name=" + getDestination()); } catch (ClassCastException e) { throw new DeploymentException("Expected a Queue destination-jndi-name=" + getDestination()); } if (queue == null) queue = (Queue) createDestination(Queue.class, context,
417418419420421422423424425426427
{ log.warn("Could not find the topic destination-jndi-name=" + getDestination()); } catch (ClassCastException e) { throw new DeploymentException("Expected a Topic destination-jndi-name=" + getDestination()); } if (topic == null) topic = (Topic) createDestination(Topic.class, context,
9596979899100101102103104105
log.debug("Deploying possibly annotated class " + cf.getName()); loader.deployClassFile(cf); } catch (Exception e) { throw new DeploymentException("Error reading annotations for " + file, e); } } List<AspectManagerAwareBeanMetaDataFactory> factories = strategy.getFactories();
139140141142143144145146147148
{ throw (DeploymentException)t; } else { throw new DeploymentException(t); } } log.debug("Finished deploying " + unit); }
201202203204205206207208
controller.install(builder.getBeanMetaData(), scopedManager); return name; } catch (Throwable e) { throw new DeploymentException("Error registering scoped manager" + name + " " + scopedManager, e); } }