Fixed sonar issue in Utils.java
[appc.git] / appc-adapters / appc-chef-adapter / appc-chef-adapter-bundle / src / main / java / org / onap / appc / adapter / chef / chefclient / impl / Utils.java
index 169b2c1..0e30d07 100644 (file)
@@ -6,6 +6,7 @@
  * ================================================================================
  * Copyright (C) 2017 Amdocs
  * =============================================================================
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -75,13 +76,7 @@ public class Utils {
             byte[] signature = instance.sign();
             outStr = Base64.encode(signature);
             String tmp = new String(outStr);
-        } catch (InvalidKeyException e) {
-            logger.error(e.getMessage());
-        } catch (IOException e) {
-            logger.error(e.getMessage());
-        } catch (SignatureException e) {
-            logger.error(e.getMessage());
-        } catch (NoSuchAlgorithmException e) {
+        } catch (InvalidKeyException | IOException | SignatureException | NoSuchAlgorithmException e) {
             logger.error(e.getMessage());
         }
         return new String(outStr);