* if the cache does not exist
* @throws CacheAccessException
* wrapping any unexpected exception thrown by the cache
*/
protected Cache getCache(CachingModel model) throws CacheNotFoundException, CacheAccessException {
final EhCacheCachingModel ehCacheCachingModel = (EhCacheCachingModel) model;
final String cacheName = ehCacheCachingModel.getCacheName();
return this.getCache(cacheName);
}