DocumentNotFoundException.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:1k
源码类别:
WEB邮件程序
开发平台:
C/C++
- /* $Id: DocumentNotFoundException.java,v 1.1.1.1 2000/02/01 12:01:37 wastl Exp $ */
- package net.wastl.webmail.server.http;
- import net.wastl.webmail.server.WebMailException;
- /**
- * DocumentNotFoundException.java
- *
- *
- * Created: Sun Feb 7 12:53:14 1999
- *
- * @author Sebastian Schaffert
- * @version $Revision: 1.1.1.1 $
- */
- public class DocumentNotFoundException extends WebMailException {
- public DocumentNotFoundException() {
- super();
- }
- public DocumentNotFoundException(String s) {
- super(s);
- }
- } // DocumentNotFoundException