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

Matthew Swift
18.55.2014 d46701cdbecec6f6c10f57432f3e6a484752f42c
opendj3-server-dev/src/server/org/opends/server/admin/ACIPropertyDefinition.java
@@ -101,7 +101,7 @@
   */
  @Override
  public void validateValue(Aci value)
      throws IllegalPropertyValueException {
      throws PropertyException {
    ifNull(value);
    // No additional validation required.
@@ -112,14 +112,14 @@
   */
  @Override
  public Aci decodeValue(String value)
      throws IllegalPropertyValueStringException {
      throws PropertyException {
    ifNull(value);
    try {
      return Aci.decode(ByteString.valueOf(value), DN.NULL_DN);
    } catch (AciException e) {
      // TODO: it would be nice to throw the cause.
      throw new IllegalPropertyValueStringException(this, value);
      throw PropertyException.illegalPropertyValueException(this, value);
    }
  }