1 package com.openedit.util.strainer; 2 3 import com.openedit.OpenEditException; 4 5 10 public class FilterException extends OpenEditException 11 { 12 public FilterException() 13 { 14 super(); 15 } 16 17 public FilterException( Throwable t ) 18 { 19 super( t ); 20 } 21 22 public FilterException( String s, Throwable t ) 23 { 24 super( s, t ); 25 } 26 27 public FilterException( String s ) 28 { 29 super( s ); 30 } 31 } | Popular Tags |