TemplateFileNotFoundException, InspectionException, CacheProviderNotSetException,
AnnotationNotRegisteredException, ConfigurationNotSetException, AnnotationNotFoundException,
TemplateFileAccessException, TagParserException {
if (this.cacheProvider == null) {
throw new CacheProviderNotSetException("Cache Provider is not set");
}
String fragment = region != null ? this.cacheProvider.get(region, key) : this.cacheProvider.get(key);
if (fragment != null) {
return fragment;