jdbcexception.java

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

JAVA
68
字号
//$Id: JDBCException.java,v 1.3.2.2 2003/08/14 11:57:49 oneovthafew Exp $
package net.sf.hibernate;

import java.sql.SQLException;

import net.sf.hibernate.util.JDBCExceptionReporter;

import org.apache.commons.logging.LogFactory;

/**
 * Wraps an <tt>SQLException</tt>. Indicates that an exception
 * occurred during a JDBC call.
 * 
 * @see java.sql.SQLException
 * @author Gavin King
 */
public class JDBCException extends HibernateException {
	
	private SQLException sqle;

	/**
	 * Constructor for JDBCException.
	 * @param root
	 */
	public JDBCException(SQLException root) {
		this("SQLException occurred", root);
	}

	/**
	 * Constructor for JDBCException.
	 * @param string
	 * @param root
	 */
	public JDBCException(String string, SQLException root) {
		super(string, root);
		sqle=root;
		JDBCExceptionReporter.logExceptions(root);
		LogFactory.getLog(JDBCExceptionReporter.class).error(string, root);
	}
	
	/**
	 * Get the SQLState of the underlying <tt>SQLException</tt>.
	 * @see java.sql.SQLException
	 * @return String
	 */
	public String getSQLState() {
		return sqle.getSQLState();
	}

	/**
	 * Get the <tt>errorCode</tt> of the underlying <tt>SQLException</tt>.
	 * @see java.sql.SQLException
	 * @return int the error code
	 */
	public int getErrorCode() {
		return sqle.getErrorCode();
	}
	
	/**
	 * Get the underlying <tt>SQLException</tt>.
	 * @return SQLException
	 */
	public SQLException getSQLException() {
		return sqle;
	}

}

⌨️ 快捷键说明

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