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

Java编程

开发平台:

Java

  1. package sfsbsample;
  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.common;
  15. /**
  16. ** <code>ScheduleDAOException</code> is a user-defined class.
  17. */
  18. public class ScheduleDAOException extends Exception
  19. {
  20.     public ScheduleDAOException (String str) {
  21.         super(str);
  22.     }
  23.     public ScheduleDAOException () {
  24.         super();
  25.     }
  26. }