Package com.ibm.websphere.servlet.event
Class FilterErrorEvent
- java.lang.Object
- 
- java.util.EventObject
- 
- com.ibm.websphere.servlet.event.FilterEvent
- 
- com.ibm.websphere.servlet.event.FilterErrorEvent
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class FilterErrorEvent extends FilterEvent Event that reports a filter error.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description FilterErrorEvent(java.lang.Object source, javax.servlet.FilterConfig filterConfig, java.lang.Throwable error)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ThrowablegetError()Returns the top-level error.java.lang.ThrowablegetRootCause()Get the original cause of the error.- 
Methods inherited from class com.ibm.websphere.servlet.event.FilterEventgetFilterConfig, getFilterName
 
- 
 
- 
- 
- 
Method Detail- 
getErrorpublic java.lang.Throwable getError() Returns the top-level error.
 - 
getRootCausepublic java.lang.Throwable getRootCause() Get the original cause of the error. Use of ServletExceptions by the engine to rethrow errors can cause the original error to be buried within one or more exceptions. This method will sift through the wrapped ServletExceptions to return the original error.
 
- 
 
-