KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > matuschek > http > DocManagerException


1 package net.matuschek.http;
2
3 /*********************************************
4     Copyright (c) 2001 by Daniel Matuschek
5  *********************************************/

6
7 /**
8  * Exception that will be thrown by HttpDocumentManagers
9  *
10  * @author Daniel Matuschek
11  * @version $Revision: 1.1 $
12  */

13 public class DocManagerException extends Exception JavaDoc {
14
15
16 /**
17      *
18      */

19     private static final long serialVersionUID = 6535142922610548628L;
20
21 /**
22    * creates a DocManagerException with the given error message
23    */

24   public DocManagerException(String JavaDoc msg) {
25     super(msg);
26   }
27   
28 } // DocManagerException
29
Popular Tags