try {
panelValidator = (StandardPanelValidator) cl.loadClass(pnlvClass).newInstance();
loggingManager.info("JaWEManager -> Working with '" + pnlvClass + "' implementation of Panel Validator");
} catch (Throwable ex) {
panelValidator = new StandardPanelValidator();
if (JaWE.getJaWEVersion() != JaWE.COMMUNITY_VERSION) {
String msg = "JaweManager -> Problems while instantiating Panel Validator class '" + pnlvClass + "' - using default implementation!";
loggingManager.error(msg, ex);
} else {
loggingManager.info("JaWEManager -> Working with '" + StandardPanelValidator.class.getName() + "' implementation of Panel Validator");