eap.filter
Class FilterException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.io.IOException
              extended byeap.filter.FilterException
All Implemented Interfaces:
Serializable

public class FilterException
extends IOException

Thrown when there is a problem applying a filter. This is usually a problem creating filter's implementation class.

See Also:
Serialized Form

Constructor Summary
FilterException(String message, Filter filter, Throwable cause)
          Create a new exception.
 
Method Summary
 Filter getFilter()
          Returns the filter being applied when this exception was thrown.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FilterException

public FilterException(String message,
                       Filter filter,
                       Throwable cause)
Create a new exception.

Parameters:
message - A string describing the cause of the exception
filter - The filter being applied when this exception was thrown.
cause - The exception which was causght to give rise to this exception. FilterExceptions are usually thrown after catching an exception when instatntiating a filter's implementation class.
Method Detail

getFilter

public Filter getFilter()
Returns the filter being applied when this exception was thrown.

Returns:
The filter being applied when this exception was thrown.