daofinderexception.java

来自「《Developing Applications with Java and U」· Java 代码 · 共 25 行

JAVA
25
字号
package com.jacksonreed;/** * DAOFinderException is an exception that extends the * DAOAppException. This is thrown by the DAOs of Remulak * when there is failure finding a record by id or name */public class DAOFinderException extends DAOAppException {    /**     * Constructor     * @param str    a string that explains what the exception condition is     */    public DAOFinderException (String str) {        super(str);    }    /**     * Default constructor. Takes no arguments     */    public DAOFinderException () {        super();    }}

⌨️ 快捷键说明

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