if (enabled && isPartOfOsgiBootDelegation(className)) {
clazz = getParentLoader().loadClass(className, resolveIt);
if (clazz == null && strictLoading) {
throw new JclException(new ClassNotFoundException("JCL OSGi Boot Delegation: Class " + className + " not found."));
}
if (logger.isLoggable(Level.FINEST))
logger.finest("Class " + className + " loaded via OSGi boot delegation.");
}