| | |
| | | * |
| | | * |
| | | * Copyright 2008 Sun Microsystems, Inc. |
| | | * Portions copyright 2013 ForgeRock AS. |
| | | */ |
| | | |
| | | package org.opends.server.admin; |
| | |
| | | } |
| | | |
| | | /** |
| | | * 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. |