else
{
BaseClassLoaderPolicy policy = classLoader.getPolicy();
if (policy != null)
{
ClassLoaderCache cache = policy.getCache();
if (cache != null && cache.isBlackListedClass(path))
{
if (log.isTraceEnabled())
log.trace("Found " + name + " in policy cache blacklist: " + cache.getInfo(ImportType.ALL));
throw new ClassNotFoundException(name + " not found - blacklisted");
}
}
}
}