Package net.sf.ehcache.exceptionhandler
Class CacheExceptionHandlerFactory
- java.lang.Object
-
- net.sf.ehcache.exceptionhandler.CacheExceptionHandlerFactory
-
public abstract class CacheExceptionHandlerFactory extends java.lang.ObjectAn abstract factory for creatingCacheExceptionHandlers at configuration time, in ehcache.xml.Extend to create a concrete factory
- Version:
- $Id$
- Author:
- Greg Luck
-
-
Constructor Summary
Constructors Constructor Description CacheExceptionHandlerFactory()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract CacheExceptionHandlercreateExceptionHandler(java.util.Properties properties)Create anCacheExceptionHandler
-
-
-
Method Detail
-
createExceptionHandler
public abstract CacheExceptionHandler createExceptionHandler(java.util.Properties properties)
Create anCacheExceptionHandler- Parameters:
properties- implementation specific properties. These are configured as comma separated name value pairs in ehcache.xml- Returns:
- a constructed CacheExceptionHandler
-
-