dataaccessexception.java

来自「are are are are are are are are are are 」· Java 代码 · 共 33 行

JAVA
33
字号
/*
 * DataAccessException.java
 *
 * Created on 2006年5月19日, 上午7:41
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package enova.dao;

/**
 * 用DAO层来隔离特定JDBC或者HIBERNATE还是其他ORM层抛出的异常
 * @author vlinux
 */
public class DataAccessException extends enova.EnovaException {
    
    /**
     * Creates a new instance of <code>DataAccessException</code> without detail message.
     */
    public DataAccessException() {
    }
    
    
    /**
     * Constructs an instance of <code>DataAccessException</code> with the specified detail message.
     * @param msg the detail message.
     */
    public DataAccessException(String msg) {
        super(msg);
    }
}

⌨️ 快捷键说明

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