in src/main/java/org/apache/sling/javax/activation/internal/OsgiMailcapCommandMap.java [277:292]
private DataContentHandler getDataContentHandler(String name, Bundle bundle) {
try {
return (DataContentHandler) bundle.loadClass(name).newInstance();
} catch (InstantiationException e) {
log.warn("Unable to instantiate " + DataContentHandler.class.getSimpleName() + " class ' " + name
+ " ' from bundle " + bundle, e);
} catch (IllegalAccessException e) {
log.warn("Unable to instantiate " + DataContentHandler.class.getSimpleName() + " class ' " + name
+ " ' from bundle " + bundle, e);
} catch (ClassNotFoundException e) {
log.warn("Unable to instantiate " + DataContentHandler.class.getSimpleName() + " class ' " + name
+ " ' from bundle " + bundle, e);
}
return null;
}