1 16 17 package org.springframework.orm.hibernate3; 18 19 import org.hibernate.HibernateException; 20 21 import org.springframework.dao.UncategorizedDataAccessException; 22 23 32 public class HibernateSystemException extends UncategorizedDataAccessException { 33 34 39 public HibernateSystemException(HibernateException cause) { 40 super(cause != null ? cause.getMessage() : null, cause); 41 } 42 43 } 44 | Popular Tags |