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

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