01: /* $Id: DocumentNotFoundException.java,v 1.1.1.1 2002/10/02 18:42:48 wastl Exp $ */
02: package net.wastl.webmail.exceptions;
03:
04: /**
05: * DocumentNotFoundException.java
06: *
07: *
08: * Created: Sun Feb 7 12:53:14 1999
09: *
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:
19: public DocumentNotFoundException(String s) {
20: super (s);
21: }
22:
23: } // DocumentNotFoundException
|