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

matthew_swift
03.36.2007 550b1d6e3a093fbf315c4bcee971736f722e0830
opendj-sdk/opends/src/server/org/opends/server/admin/PropertyNotFoundException.java
@@ -27,7 +27,7 @@
package org.opends.server.admin;
import org.opends.messages.Message;
import static org.opends.messages.AdminMessages.*;
/**
@@ -56,8 +56,8 @@
   *          The name of the property that could not be found.
   */
  public PropertyNotFoundException(String propertyName) {
    super(Message.raw("The property \"" + propertyName +
            "\" was not recognized")); // TODO: i18n
    super(ERR_PROPERTY_NOT_FOUND_EXCEPTION.get(propertyName));
    this.propertyName = propertyName;
  }