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

matthew_swift
03.19.2007 6850df8cec0e7beca4fd87ef26da863e1b68b961
Change exception error message so that is more generic (this exception can be thrown when a managed object is created without a mandatory property, not just when the property is removed).
1 files modified
2 ■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/admin/PropertyIsMandatoryException.java 2 ●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/admin/PropertyIsMandatoryException.java
@@ -59,7 +59,7 @@
  @Override
  public String getMessage() {
    return "The property \"" + getPropertyDefinition().getName()
        + "\" must not be removed as it is mandatory";
        + "\" must be specified as it is mandatory";
  }
}