diff options
author | sunil unnava <su622b@att.com> | 2018-08-31 14:39:10 -0400 |
---|---|---|
committer | sunil unnava <su622b@att.com> | 2018-08-31 14:39:33 -0400 |
commit | d45a6e11be79157fb32e5cd6252a14747406e20f (patch) | |
tree | a89afb3ae89574746e325b396ca7c0f5731036ce /src/main/java/com | |
parent | f25de1912f09ed6d5e3172332913daee1851e704 (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>
Diffstat (limited to 'src/main/java/com')
-rw-r--r-- | src/main/java/com/att/nsa/mr/tools/ValidatorUtil.java | 2 |
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" ); } } |