LOGGER.debug("CommonsValidatorPlugin:init()"); //$NON-NLS-1$
try {
CommonsValidatorWrapper.load(context);
} catch (CommonsValidatorException e) {
LOGGER.severe("CommonsValidatorPlugin not loaded : " + e); //$NON-NLS-1$
throw new PluginException(e);
} catch (NoClassDefFoundError e) {
// Bug Fix: 917752
// Throw exception when plugin is specified, but class files
// are missing
LOGGER.severe("CommonsValidatorPlugin not loaded : " + e); //$NON-NLS-1$
throw new PluginException(e);
}
}