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

Matthew Swift
02.30.2013 2201f3caea5dec0397451a7b1053cfbdd5efd85d
opends/src/server/org/opends/server/admin/IllegalPropertyValueStringException.java
@@ -23,6 +23,7 @@
 *
 *
 *      Copyright 2008 Sun Microsystems, Inc.
 *      Portions copyright 2013 ForgeRock AS.
 */
package org.opends.server.admin;
@@ -68,6 +69,24 @@
  /**
   * Create a new illegal property value string exception.
   *
   * @param pd
   *          The property definition.
   * @param value
   *          The illegal property value string.
   * @param cause
   *          The cause.
   */
  public IllegalPropertyValueStringException(PropertyDefinition<?> pd,
      String value, Throwable cause) {
    super(pd, createMessage(pd, value), cause);
    this.value = value;
  }
  /**
   * Get the illegal property value string that caused the exception.
   *
   * @return Returns the illegal property value string.