aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsunil unnava <su622b@att.com>2018-08-31 14:39:10 -0400
committersunil unnava <su622b@att.com>2018-08-31 14:39:33 -0400
commitd45a6e11be79157fb32e5cd6252a14747406e20f (patch)
treea89afb3ae89574746e325b396ca7c0f5731036ce
parentf25de1912f09ed6d5e3172332913daee1851e704 (diff)
Fix the typo error in the error message1.1.8
Issue-ID: DMAAP-688 Change-Id: I5457bf0829fa509e932e2e814ed4b9e9a21ce2e5 Signed-off-by: sunil unnava <su622b@att.com>
-rw-r--r--src/main/java/com/att/nsa/mr/tools/ValidatorUtil.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/att/nsa/mr/tools/ValidatorUtil.java b/src/main/java/com/att/nsa/mr/tools/ValidatorUtil.java
index 1b8cd47..0539582 100644
--- a/src/main/java/com/att/nsa/mr/tools/ValidatorUtil.java
+++ b/src/main/java/com/att/nsa/mr/tools/ValidatorUtil.java
@@ -165,7 +165,7 @@ public class ValidatorUtil {
}
String authDate = props.getProperty("authDate");
if (authDate == null || authDate.isEmpty()) {
- throw new IllegalArgumentException ( "password is needed" );
+ throw new IllegalArgumentException ( "authDate is needed" );
}
}