mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
18.58.2014 9314d4add5ffbc40b21347539a0e503964dae207
opendj-sdk/opendj-config/src/main/java/org/forgerock/opendj/config/DNPropertyDefinition.java
@@ -145,7 +145,7 @@
            }
            if (!parent.equals(baseDN)) {
                throw new IllegalPropertyValueException(this, value);
                throw PropertyException.illegalPropertyValueException(this, value);
            }
        }
    }
@@ -161,8 +161,8 @@
            DN dn = DN.valueOf(value);
            validateValue(dn, options);
            return dn;
        } catch (IllegalPropertyValueException e) {
            throw new IllegalPropertyValueStringException(this, value);
        } catch (PropertyException e) {
            throw PropertyException.illegalPropertyValueException(this, value);
        }
    }