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

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