Package com.ibm.websphere.servlet.event
Interface FilterErrorListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
FilterListenerImpl
public interface FilterErrorListener extends java.util.EventListenerEvent listener interface used to receive notifications about filter errors.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFilterDestroyError(FilterErrorEvent evt)Triggered when an error occurs while executing the filter's destroy() method.voidonFilterDoFilterError(FilterErrorEvent evt)Triggered when an error occurs while executing the filter's doFilter() method.voidonFilterInitError(FilterErrorEvent evt)Triggered when an error occurs while executing the filter's init() method.
-
-
-
Method Detail
-
onFilterInitError
void onFilterInitError(FilterErrorEvent evt)
Triggered when an error occurs while executing the filter's init() method. This method will be triggered if the filter throws an exception from its init() method.- See Also:
Filter.init(javax.servlet.FilterConfig)
-
onFilterDoFilterError
void onFilterDoFilterError(FilterErrorEvent evt)
Triggered when an error occurs while executing the filter's doFilter() method. This method will be triggered if the filter throws an exception from its doFilter() method.- See Also:
HttpServletResponse.sendError(int),Filter.doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain)
-
onFilterDestroyError
void onFilterDestroyError(FilterErrorEvent evt)
Triggered when an error occurs while executing the filter's destroy() method. This method will be triggered if the filter throws an exception from its destroy() method.- See Also:
Servlet.destroy()
-
-