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

Nicolas Capponi
24.43.2014 81d36161ce5367fa7aa9a5d99dc8b80eacfa7cdf
opendj3-server-dev/src/server/org/opends/server/admin/PropertyException.java
@@ -31,7 +31,7 @@
import static org.opends.messages.AdminMessages.*;
import org.opends.messages.Message;
import org.forgerock.i18n.LocalizableMessage;
@@ -173,7 +173,7 @@
  // Create the message.
  private static Message createMessage(PropertyDefinition<?> pd, Object value)
  private static LocalizableMessage createMessage(PropertyDefinition<?> pd, Object value)
  {
    PropertyDefinitionUsageBuilder builder = new PropertyDefinitionUsageBuilder(
        true);
@@ -183,8 +183,8 @@
  // Message that explains the problem.
  private final Message message;
  // LocalizableMessage that explains the problem.
  private final LocalizableMessage message;
  /*
   * The property definition associated with the property that caused the
@@ -194,7 +194,7 @@
  private PropertyException(PropertyDefinition<?> pd, Message message)
  private PropertyException(PropertyDefinition<?> pd, LocalizableMessage message)
  {
    super(message.toString());
    this.message = message;
@@ -203,7 +203,7 @@
  private PropertyException(PropertyDefinition<?> pd, Message message,
  private PropertyException(PropertyDefinition<?> pd, LocalizableMessage message,
      Throwable cause)
  {
    super(message.toString(), cause);
@@ -219,7 +219,7 @@
   * @return Returns the message describing the problem that occurred (never
   *         <code>null</code>).
   */
  public Message getMessageObject()
  public LocalizableMessage getMessageObject()
  {
    return message;
  }