eap.filter
Class FilterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
eap.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
|
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 |
FilterException
public FilterException(String message,
Filter filter,
Throwable cause)
- Create a new exception.
- Parameters:
message - A string describing the cause of the exceptionfilter - 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.
getFilter
public Filter getFilter()
- Returns the filter being applied when this exception was thrown.
- Returns:
- The filter being applied when this exception was thrown.