net.sf.ehcache.constructs.web.filter

Class FilterNonReentrantException

public class FilterNonReentrantException extends CacheException

Thrown when it is detected that a caching filter's CachingFilter method is reentered by the same thread.

Reentrant calls will block indefinitely because the first request has not yet unblocked the cache.

This condition usually happens declaratively when the same filter is specified twice in a filter chain or programmatically when a javax.servlet.RequestDispatcher includes or forwards back to the same URL, either directly or indirectly.

Version: $Id: FilterNonReentrantException.java 59 2006-04-30 03:41:39Z gregluck $

Author: Greg Luck

Constructor Summary
FilterNonReentrantException()
Constructor for the exception
FilterNonReentrantException(String message)
Constructs an exception with the message given

Constructor Detail

FilterNonReentrantException

public FilterNonReentrantException()
Constructor for the exception

FilterNonReentrantException

public FilterNonReentrantException(String message)
Constructs an exception with the message given

Parameters: message the message