hibernateexception.java

来自「用Java实现的23个常用设计模式源代码」· Java 代码 · 共 36 行

JAVA
36
字号
//$Id: HibernateException.java,v 1.5.2.1 2003/10/25 07:43:51 oneovthafew Exp $package net.sf.hibernate;import net.sf.hibernate.exception.NestableException;/** * Any exception that occurs inside the persistence layer * or JDBC driver. <tt>SQLException</tt>s are always wrapped * by instances of <tt>JDBCException</tt>. *  * @see JDBCException * @author Gavin King */public class HibernateException extends NestableException {		public HibernateException(Throwable root) {		super(root);	}			public HibernateException(String string, Throwable root) {		super(string, root);	}		public HibernateException(String s) {		super(s);	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?