scheduledaoexception.java
来自「100多M的J2EE培训内容」· Java 代码 · 共 35 行
JAVA
35 行
package sfsbsample;/* * * Copyright 2001, 2002 JavaCamp.com, Inc. All Rights Reserved. * * Grant the rights to the purchaser of the book to use the source code. * . * @author Pravin Tulachan * @version 1.0 * @see * @since * *///package j2eebootcamp.developingEJB.common;/**** <code>ScheduleDAOException</code> is a user-defined class.*/public class ScheduleDAOException extends Exception{ public ScheduleDAOException (String str) { super(str); } public ScheduleDAOException () { super(); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?