opendj-server-legacy/src/main/java/org/opends/server/admin/ClassPropertyDefinition.java
@@ -353,12 +353,9 @@ String classToBeLoaded, boolean initialize) { try { return loadClass(classToBeLoaded.trim(), initialize); } catch (ClassNotFoundException e) { } catch (ClassNotFoundException | LinkageError e) { // If the class cannot be loaded then it is an invalid value. throw illegalPropertyValueException(this, componentClassName, e); } catch (LinkageError e) { // If the class cannot be initialized then it is an invalid value. throw illegalPropertyValueException(this, componentClassName, e); } }