1 16 17 package org.springframework.orm.hibernate3; 18 19 import org.hibernate.JDBCException; 20 21 import org.springframework.dao.UncategorizedDataAccessException; 22 23 31 public class HibernateJdbcException extends UncategorizedDataAccessException { 32 33 public HibernateJdbcException(JDBCException ex) { 34 super("JDBC exception on Hibernate data access", ex); 35 } 36 37 } 38 | Popular Tags |