customerdaofinderexception.java
来自「《Developing Applications with Java and U」· Java 代码 · 共 25 行
JAVA
25 行
package com.jacksonreed;/** * CustomerDAOFinderException is an exception that extends the * CustomerDAOAppException. This is thrown by the DAOs of the customer * component when there is some failure because of user error */public class CustomerDAOFinderException extends CustomerDAOAppException { /** * Constructor * @param str a string that explains what the exception condition is */ public CustomerDAOFinderException (String str) { super(str); } /** * Default constructor. Takes no arguments */ public CustomerDAOFinderException () { super(); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?