HibernateException.java 600 Bytes
Newer Older
prova's avatar
prova committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
package net.sf.hibernate;

/**
 * Classe per il transito da Hibernate2 al 3 
 * <br><b>Created by:</b> Alessandro Rizzi
 * <br><b>Create date:</b> Giugno 2005
 * @author $Author: sandro $
 * @since $Date: 2005/06/30 07:20:14 $
 * @deprecated non fare mai riferimento alle classi di Hibernate direttamente
 * */
 public class HibernateException extends org.hibernate.HibernateException
{
  public HibernateException(String msg)
  {
    super(msg);
  }

  public HibernateException(String msg, Throwable t)
  {
    super(msg, t);
  }

  public HibernateException(Throwable t)
  {
    super(t);
  }
  
}