[jboss-cvs] jboss-ejb3/src/main/org/jboss/ejb3/stateless ...

Bill DeCoste bdecoste at jboss.com
Tue Jul 11 16:45:43 EDT 2006


  User: bdecoste
  Date: 06/07/11 16:45:43

  Modified:    src/main/org/jboss/ejb3/stateless 
                        BaseStatelessProxyFactory.java
  Log:
  fixed exception text
  
  Revision  Changes    Path
  1.10      +2 -2      jboss-ejb3/src/main/org/jboss/ejb3/stateless/BaseStatelessProxyFactory.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BaseStatelessProxyFactory.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-ejb3/src/main/org/jboss/ejb3/stateless/BaseStatelessProxyFactory.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- BaseStatelessProxyFactory.java	5 Jul 2006 08:45:42 -0000	1.9
  +++ BaseStatelessProxyFactory.java	11 Jul 2006 20:45:43 -0000	1.10
  @@ -44,7 +44,7 @@
    * Comment
    *
    * @author <a href="mailto:bill at jboss.org">Bill Burke</a>
  - * @version $Revision: 1.9 $
  + * @version $Revision: 1.10 $
    */
   public abstract class BaseStatelessProxyFactory extends org.jboss.ejb3.session.BaseSessionProxyFactory implements ProxyFactory
   {
  @@ -219,7 +219,7 @@
            Util.bind(container.getInitialContext(), jndiName, proxy);
         } catch (NamingException e)
         {
  -         NamingException namingException = new NamingException("Could not bind statless proxy with ejb name " + container.getEjbName() + " into JNDI under jndiName: " + container.getInitialContext().getNameInNamespace() + "/" + jndiName);
  +         NamingException namingException = new NamingException("Could not bind stateless proxy with ejb name " + container.getEjbName() + " into JNDI under jndiName: " + container.getInitialContext().getNameInNamespace() + "/" + jndiName);
            namingException.setRootCause(e);
            throw namingException;
         }
  
  
  



More information about the jboss-cvs-commits mailing list