spring-framework / org.springframework.cache.interceptor / SimpleCacheErrorHandler

SimpleCacheErrorHandler

open class SimpleCacheErrorHandler : CacheErrorHandler

A simple CacheErrorHandler that does not handle the exception at all, simply throwing it back at the client.

Author
Stephane Nicoll

Since
4.1

Constructors

<init>

SimpleCacheErrorHandler()

A simple CacheErrorHandler that does not handle the exception at all, simply throwing it back at the client.

Functions

handleCacheClearError

open fun handleCacheClearError(exception: RuntimeException, cache: Cache): Unit

handleCacheEvictError

open fun handleCacheEvictError(exception: RuntimeException, cache: Cache, key: Any): Unit

handleCacheGetError

open fun handleCacheGetError(exception: RuntimeException, cache: Cache, key: Any): Unit

handleCachePutError

open fun handleCachePutError(exception: RuntimeException, cache: Cache, key: Any, value: Any): Unit