diff options
author | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2018-04-25 13:45:58 +0530 |
---|---|---|
committer | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2018-04-25 13:45:58 +0530 |
commit | d80bf4acdffec806a032cb93fd1279efffa97a6f (patch) | |
tree | 6ce1bfcfb1b42e9fb03ce2ade78dd5180056a27a /profiles/http/src/main | |
parent | 90653c9a321bfe92c7718b5448d51505e7c98c12 (diff) |
Remove invalide exceptions throws
Issue-ID: CLI-100
Change-Id: I416b6563199f1eb43565efd104749dd0a0cb61e6
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'profiles/http/src/main')
-rw-r--r-- | profiles/http/src/main/java/org/onap/cli/fw/http/auth/OnapCommandHttpAuthClient.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profiles/http/src/main/java/org/onap/cli/fw/http/auth/OnapCommandHttpAuthClient.java b/profiles/http/src/main/java/org/onap/cli/fw/http/auth/OnapCommandHttpAuthClient.java index 3127b6b1..fa4b9c2f 100644 --- a/profiles/http/src/main/java/org/onap/cli/fw/http/auth/OnapCommandHttpAuthClient.java +++ b/profiles/http/src/main/java/org/onap/cli/fw/http/auth/OnapCommandHttpAuthClient.java @@ -46,7 +46,7 @@ public class OnapCommandHttpAuthClient { private Map<String, String> loginCache = new HashMap<>(); - public OnapCommandHttpAuthClient(OnapHttpCommand cmd, boolean debug) throws OnapCommandHttpFailure, OnapCommandInvalidParameterValue { + public OnapCommandHttpAuthClient(OnapHttpCommand cmd, boolean debug) throws OnapCommandHttpFailure { this.cmd = cmd; this.http = new OnapHttpConnection(debug); } |