01: package net.matuschek.http;
02:
03: /*********************************************
04: Copyright (c) 2001 by Daniel Matuschek
05: *********************************************/
06:
07: /**
08: * Exception that will be thrown by HttpDocumentManagers
09: *
10: * @author Daniel Matuschek
11: * @version $Revision: 1.1 $
12: */
13: public class DocManagerException extends Exception {
14:
15: /**
16: *
17: */
18: private static final long serialVersionUID = 6535142922610548628L;
19:
20: /**
21: * creates a DocManagerException with the given error message
22: */
23: public DocManagerException(String msg) {
24: super (msg);
25: }
26:
27: } // DocManagerException
|