aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOCommonBPMN/src
diff options
context:
space:
mode:
authorshashikanth <shashikanth.vh@huawei.com>2017-09-19 17:57:36 +0530
committershashikanth <shashikanth.vh@huawei.com>2017-09-19 17:57:36 +0530
commitb8d85a4fb5d4c55bed51af9515c1f9114fcaf6fe (patch)
treea15824bc2d83cc4370da34e5fcd953f94c0e2d3c /bpmn/MSOCommonBPMN/src
parent7562a302a4856f733fc5a12fddf57a7e9f06ee37 (diff)
Fix Blocker/Critical sonar issues
Fix Blocker/Critical sonar issues in so module https://sonar.onap.org/component_issues?id=org.openecomp.so%3Aso#resolved=false|severities=CRITICAL Fixed String with no format specifiers Issue-Id:SO-118 Change-Id: Ie5257d1a01a9c2e6cf25a453a4c602376a69a396 Signed-off-by: shashikanth.vh <shashikanth.vh@huawei.com>
Diffstat (limited to 'bpmn/MSOCommonBPMN/src')
-rw-r--r--bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/appc/ApplicationControllerSupport.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/appc/ApplicationControllerSupport.java b/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/appc/ApplicationControllerSupport.java
index c0f1a2067e..3b7089153f 100644
--- a/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/appc/ApplicationControllerSupport.java
+++ b/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/appc/ApplicationControllerSupport.java
@@ -108,7 +108,7 @@ public class ApplicationControllerSupport {
try {
return (Status) statusReader.invoke(response);
} catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
- throw new RuntimeException(String.format("Unable to obtain status from LCM Kit response", e));
+ throw new RuntimeException(String.format("Unable to obtain status from LCM Kit response"), e);
}
}
return new Status();