ScheduleDAOException.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package slsbsample;
- /*
- *
- * 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.chapter6.search;
- import java.util.*;
- //import java.lang.reflect.*;
- import java.io.*;
- /**
- ** <code>ScheduleDAOException</code> is a user-defined class.
- */
- public class ScheduleDAOException
- extends Exception {
- public ScheduleDAOException(String str) {
- super(str);
- }
- public ScheduleDAOException() {
- super();
- }
- }