diff options
author | GuangrongFu <fu.guangrong@zte.com.cn> | 2018-03-08 18:14:50 +0800 |
---|---|---|
committer | GuangrongFu <fu.guangrong@zte.com.cn> | 2018-03-08 18:24:30 +0800 |
commit | b1105dd8f4fa2cf21cc4eb4a6f825685a185173b (patch) | |
tree | 81d54986cef286ddc1f00d97d6b0f9fecf6611dd /holmes-actions/src/main | |
parent | 8109b02052d5a66f442d8418340ad3bd7272ff99 (diff) |
Change the Exception from Generic to Specific
Change-Id: I6d84339a95953e09171eef883f0b3c2fbeb71d96
Issue-ID: HOLMES-118
Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'holmes-actions/src/main')
-rw-r--r-- | holmes-actions/src/main/java/org/onap/holmes/common/utils/HttpsUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/holmes-actions/src/main/java/org/onap/holmes/common/utils/HttpsUtils.java b/holmes-actions/src/main/java/org/onap/holmes/common/utils/HttpsUtils.java index 41db955..a2c4852 100644 --- a/holmes-actions/src/main/java/org/onap/holmes/common/utils/HttpsUtils.java +++ b/holmes-actions/src/main/java/org/onap/holmes/common/utils/HttpsUtils.java @@ -200,7 +200,7 @@ public class HttpsUtils { } private static HttpResponse executeRequest(CloseableHttpClient httpClient, HttpRequestBase httpRequest) - throws Exception { + throws CorrelationException, IOException { HttpResponse httpResponse; try { httpResponse = httpClient.execute(httpRequest); |