String cacheName = "";
Method method = null;
try {
method = this.getInterceptedMethod(pjp);
CatalogCacheable annotation = method.getAnnotation(CatalogCacheable.class);
cacheName = annotation != null ? annotation.cacheName() : "default";
} catch(Exception e) {
LOGGER.severe(StackTraceUtil.getStackTrace(e));
cacheName = "default";
} finally {