Package org.hibernate.internal.util.jndi

Examples of org.hibernate.internal.util.jndi.JndiException


  private InitialContext buildInitialContext() {
    try {
      return initialContextSettings.size() == 0 ? new InitialContext() : new InitialContext( initialContextSettings );
    }
    catch ( NamingException e ) {
      throw new JndiException( "Unable to open InitialContext", e );
    }
  }
View Full Code Here

TOP

Related Classes of org.hibernate.internal.util.jndi.JndiException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.