sqlexceptionconverter.java

来自「介绍了hibernate的入门有一些基本常用的事例」· Java 代码 · 共 33 行

JAVA
33
字号
// $Id: SQLExceptionConverter.java,v 1.3 2004/11/21 00:11:27 pgmjsd Exp $package org.hibernate.exception;import org.hibernate.JDBCException;import java.sql.SQLException;/** * Defines a contract for implementations that know how to convert a SQLException * into Hibernate's JDBCException hierarchy.  Inspired by Spring's * SQLExceptionTranslator. * <p/> * Implementations <b>must</b> have a constructor which takes a * {@link ViolatedConstraintNameExtracter} parameter. * <p/> * Implementations may implement {@link Configurable} if they need to perform * configuration steps prior to first use. * * @author Steve Ebersole * @see SQLExceptionConverterFactory */public interface SQLExceptionConverter {	/**	 * Convert the given SQLException into Hibernate's JDBCException hierarchy.	 *	 * @param sqlException The SQLException to be converted.	 * @param message      An optional error message.	 * @return The resulting JDBCException.	 * @see ConstraintViolationException, JDBCConnectionException, SQLGrammarException, LockAcquisitionException	 */	public JDBCException convert(SQLException sqlException, String message, String sql);}

⌨️ 快捷键说明

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