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

Jean-Noel Rouvignac
18.18.2015 2f6d798e90520dd1b83ac30e53838ae6fd41a150
opendj-server-legacy/src/main/java/org/opends/server/admin/DNPropertyDefinition.java
@@ -199,9 +199,7 @@
      DN dn = DN.valueOf(value);
      validateValue(dn);
      return dn;
    } catch (DirectoryException e) {
      throw PropertyException.illegalPropertyValueException(this, value);
    } catch (PropertyException e) {
    } catch (DirectoryException | PropertyException e) {
      throw PropertyException.illegalPropertyValueException(this, value);
    }
  }