1 package org.hibernate; 3 4 import org.hibernate.exception.NestableRuntimeException; 5 6 14 15 public class HibernateException extends NestableRuntimeException { 16 17 public HibernateException(Throwable root) { 18 super(root); 19 } 20 21 public HibernateException(String string, Throwable root) { 22 super(string, root); 23 } 24 25 public HibernateException(String s) { 26 super(s); 27 } 28 } 29 30 31 32 33 34 35 | Popular Tags |