ScheduleDAOException.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- 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();
- }
- }