Uses of Class
net.sf.ehcache.CacheException

Packages that use CacheException
net.sf.ehcache This package contains the public API for using EHCache 
net.sf.ehcache.store Store package. 
 

Uses of CacheException in net.sf.ehcache
 

Subclasses of CacheException in net.sf.ehcache
 class ObjectExistsException
           
 

Methods in net.sf.ehcache that throw CacheException
static CacheManager CacheManager.create()
          A factory method to create a CacheManager with default config.
static CacheManager CacheManager.getInstance()
          A factory method to get an instance ofCacheManager.
static CacheManager CacheManager.create(java.lang.String configurationFileName)
          A factory method to create a CacheManager with a specified configuration.
static CacheManager CacheManager.create(java.net.URL configurationFileURL)
          A factory method to create a CacheManager from an URL.
 void CacheManager.addCache(java.lang.String cacheName)
          Use this to add a Cache.
 void CacheManager.addCache(Cache cache)
          Use this to add a Cache.
 Element Cache.get(java.io.Serializable key)
          Gets an element from the cache.
 

Uses of CacheException in net.sf.ehcache.store
 

Methods in net.sf.ehcache.store that throw CacheException
 java.util.Map MemoryStore.loadMapInstance()
          Tries to load a LinkedHashMap (JDK1.4) and then tries to load an LRUMap.