From b1105dd8f4fa2cf21cc4eb4a6f825685a185173b Mon Sep 17 00:00:00 2001 From: GuangrongFu Date: Thu, 8 Mar 2018 18:14:50 +0800 Subject: Change the Exception from Generic to Specific Change-Id: I6d84339a95953e09171eef883f0b3c2fbeb71d96 Issue-ID: HOLMES-118 Signed-off-by: GuangrongFu --- .../src/main/java/org/onap/holmes/common/utils/HttpsUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'holmes-actions/src/main') 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); -- cgit 1.2.3-korg