From 3054523341ef111fed7f6b9c2b87ea973407d39a Mon Sep 17 00:00:00 2001 From: Santosh Yadav Date: Thu, 8 Feb 2018 10:01:44 +0530 Subject: [PATCH] sonar bug fix: throwing throwable changed throwable to Exception line no: 53 Issue-ID: VFC-693 Change-Id: Ib3945cfde2a7240db053d8257c5f07f9dd53143c Signed-off-by: Santosh Yadav --- .../java/org/onap/vfc/nfvo/emsdriver/commons/utils/DriverThread.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/utils/DriverThread.java b/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/utils/DriverThread.java index 9ed1e6b..cbdbd3c 100644 --- a/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/utils/DriverThread.java +++ b/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/utils/DriverThread.java @@ -51,7 +51,7 @@ public abstract class DriverThread implements Runnable { try { dispose(); - } catch (Throwable e) { + } catch (Exception e) { e.printStackTrace(); } this.setEnd(true); -- 2.16.6