daoexception.java

来自「本文论述了一个前台笔记本销售系统的开发过程」· Java 代码 · 共 48 行

JAVA
48
字号
package com.set.appframe.persistence;

import com.set.appframe.exception.SystemException;

/**
 * A general DAOException that is thrown by all DAO classes.
 * 
 */
public class DAOException extends SystemException {
	// ~ Constructors
	// ===========================================================

	/**
	 * Constructor for DAOException.
	 */
	public DAOException() {
		super();
	}

	/**
	 * Constructor for DAOException.
	 * 
	 * @param message
	 */
	public DAOException(String message) {
		super(message);
	}

	/**
	 * Constructor for DAOException.
	 * 
	 * @param message
	 * @param cause
	 */
	public DAOException(String message, Throwable cause) {
		super(message, cause);
	}

	/**
	 * Constructor for DAOException.
	 * 
	 * @param cause
	 */
	public DAOException(Throwable cause) {
		super(cause);
	}
}

⌨️ 快捷键说明

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