KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > util > strainer > FilterException


1 package com.openedit.util.strainer;
2
3 import com.openedit.OpenEditException;
4
5 /**
6  * This is the superclass of all exceptions thrown by {@link Filter}s.
7  *
8  * @author Eric Galluzzo
9  */

10 public class FilterException extends OpenEditException
11 {
12     public FilterException()
13     {
14         super();
15     }
16     
17     public FilterException( Throwable JavaDoc t )
18     {
19         super( t );
20     }
21     
22     public FilterException( String JavaDoc s, Throwable JavaDoc t )
23     {
24         super( s, t );
25     }
26     
27     public FilterException( String JavaDoc s )
28     {
29         super( s );
30     }
31 }
Popular Tags