From: sunil unnava Date: Fri, 31 Aug 2018 18:39:10 +0000 (-0400) Subject: Fix the typo error in the error message X-Git-Tag: 1.1.8^0 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=d45a6e11be79157fb32e5cd6252a14747406e20f;p=dmaap%2Fmessagerouter%2Fdmaapclient.git Fix the typo error in the error message Issue-ID: DMAAP-688 Change-Id: I5457bf0829fa509e932e2e814ed4b9e9a21ce2e5 Signed-off-by: sunil unnava --- 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" ); } }