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

matthew_swift
03.19.2007 c0587912800f6afd4ba6bd5df130abf4b3bdf0f6
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
opends/src/server/org/opends/server/admin/PropertyIsMandatoryException.java 2 ●●● patch | view | raw | blame | history
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";
  }
}