KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > matuschek > spider > docfilter > FilterException


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

6
7
8 /**
9  * This is a generic exception that will be thrown if an error
10  * occurs during filtering a document.
11  *
12  * @author Daniel Matuschek
13  * @version $Id $
14  */

15 public class FilterException extends Exception JavaDoc
16 {
17
18     private static final long serialVersionUID = 8800962933780602077L;
19
20     /**
21      * creates a FilterException with the given error message
22      */

23     public FilterException(String JavaDoc msg) {
24         super(msg);
25     }
26
27 }
28
Popular Tags