hibernateexception.java
来自「好东西,hibernate-3.2.0,他是一开元的树杖hibernate-3.」· Java 代码 · 共 35 行
JAVA
35 行
//$Id: HibernateException.java 5683 2005-02-12 03:09:22Z oneovthafew $
package org.hibernate;
import org.hibernate.exception.NestableRuntimeException;
/**
* 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 NestableRuntimeException {
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 + -
显示快捷键?