Package org.timedex.exception

Examples of org.timedex.exception.PersistenceException


  private HibernateSessionStrategy() {
    try {
      // uses 'hibernate.cfg.xml'
       sessionFactory = new Configuration().configure().buildSessionFactory();
    } catch (HibernateException e) {
      throw new PersistenceException("Caught HibernateException instantiating SessionFactory", e);
    }
  }
View Full Code Here


   */
  public Session getCurrentSession() throws PersistenceException {
    try {
      return sessionFactory.getCurrentSession();
    } catch (HibernateException e) {
      throw new PersistenceException("An error occurred getting the current session", e);
    }
  }
View Full Code Here

   */
  public void endCurrentSession() throws PersistenceException {
    try {
      sessionFactory.getCurrentSession().close();
    } catch (HibernateException e) {
      throw new PersistenceException("An error occurred closing the current session", e);
    }
  }
View Full Code Here

TOP

Related Classes of org.timedex.exception.PersistenceException

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.