// + path.getAbsolutePath(), ex);
//} catch (IllegalAccessException ex) {
// throw new PluginLoadingException(ex.getMessage(),
// ex);
} catch (NoClassDefFoundError noClassDefFoundError) {
throw new PluginLoadingException("This plugin miss a library neccessary to work correctly or "
+ "calls a method that no longer exists. "
+ noClassDefFoundError.getMessage(),
noClassDefFoundError);
}
}
}
}
} catch (Exception ex) {
throw new PluginLoadingException("Generic error while loading boundle "
+ pluginJar.getAbsolutePath(), ex);
}
}
}