From c0587912800f6afd4ba6bd5df130abf4b3bdf0f6 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Thu, 03 May 2007 09:19:42 +0000
Subject: [PATCH] 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).
---
opends/src/server/org/opends/server/admin/PropertyIsMandatoryException.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/admin/PropertyIsMandatoryException.java b/opends/src/server/org/opends/server/admin/PropertyIsMandatoryException.java
index 153ff23..4f50373 100644
--- a/opends/src/server/org/opends/server/admin/PropertyIsMandatoryException.java
+++ b/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";
}
}
--
Gitblit v1.10.0