DocumentNotFoundException.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /* $Id: DocumentNotFoundException.java,v 1.1.1.1 2000/02/01 12:01:37 wastl Exp $ */
  2. package net.wastl.webmail.server.http;
  3. import net.wastl.webmail.server.WebMailException;
  4. /**
  5.  * DocumentNotFoundException.java
  6.  *
  7.  *
  8.  * Created: Sun Feb  7 12:53:14 1999
  9.  *
  10.  * @author Sebastian Schaffert
  11.  * @version $Revision: 1.1.1.1 $
  12.  */
  13. public class DocumentNotFoundException extends WebMailException {
  14.     
  15.     public DocumentNotFoundException() {
  16. super();
  17.     }
  18.     public DocumentNotFoundException(String s) {
  19. super(s);
  20.     }
  21.     
  22. } // DocumentNotFoundException