From: Santosh Yadav Date: Thu, 8 Feb 2018 04:31:44 +0000 (+0530) Subject: sonar bug fix: throwing throwable X-Git-Tag: v1.1.0~55 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=3054523341ef111fed7f6b9c2b87ea973407d39a;p=vfc%2Fnfvo%2Fdriver%2Fems.git sonar bug fix: throwing throwable changed throwable to Exception line no: 53 Issue-ID: VFC-693 Change-Id: Ib3945cfde2a7240db053d8257c5f07f9dd53143c Signed-off-by: Santosh Yadav --- 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);