ScheduleDAOException.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package slsbsample;
  2. /*
  3.  *
  4.  * Copyright 2001, 2002 JavaCamp.com, Inc. All Rights Reserved.
  5.  *
  6.  * Grant the rights to the purchaser of the book to use the source code.
  7.  * .
  8.  * @author Pravin Tulachan
  9.  * @version 1.0
  10.  * @see
  11.  * @since
  12.  *
  13.  */
  14. //package j2eebootcamp.developingEJB.chapter6.search;
  15. import java.util.*;
  16. //import java.lang.reflect.*;
  17. import java.io.*;
  18. /**
  19.  ** <code>ScheduleDAOException</code> is a user-defined class.
  20.  */
  21. public class ScheduleDAOException
  22.     extends Exception {
  23.   public ScheduleDAOException(String str) {
  24.     super(str);
  25.   }
  26.   public ScheduleDAOException() {
  27.     super();
  28.   }
  29. }