commit | 986a47aa7c5c3d5e8549da636077ba6ff08bdd91 | [log] [tgz] |
---|---|---|
author | Ray Milkey <ray@opennetworking.org> | Thu Jan 25 11:38:51 2018 -0800 |
committer | Thomas Vachuska <tom@opennetworking.org> | Thu Feb 01 18:36:33 2018 +0000 |
tree | f23fa71badf1a9581aca24fb200e7ae256be6e82 | |
parent | 47432589c156324066f193702247e25da45ef58d [diff] |
SONAR suggestion - generic exceptions Replace uses of generic RuntimeException with more appropriate unchecked exceptions Change-Id: If283743c2cf7252b8d280bdb788708ebbe57da9d
diff --git a/protocols/lisp/ctl/src/main/java/org/onosproject/lisp/ctl/impl/LispControllerBootstrap.java b/protocols/lisp/ctl/src/main/java/org/onosproject/lisp/ctl/impl/LispControllerBootstrap.java index 9b05097..8e6bcf9 100644 --- a/protocols/lisp/ctl/src/main/java/org/onosproject/lisp/ctl/impl/LispControllerBootstrap.java +++ b/protocols/lisp/ctl/src/main/java/org/onosproject/lisp/ctl/impl/LispControllerBootstrap.java
@@ -70,8 +70,8 @@ f.sync(); } - } catch (Exception e) { - throw new RuntimeException(e); + } catch (InterruptedException e) { + Thread.currentThread().interrupt(); } }
diff --git a/protocols/lisp/msg/src/main/java/org/onosproject/lisp/msg/authentication/LispMacAuthentication.java b/protocols/lisp/msg/src/main/java/org/onosproject/lisp/msg/authentication/LispMacAuthentication.java index a6af0b6..20a2f2a 100644 --- a/protocols/lisp/msg/src/main/java/org/onosproject/lisp/msg/authentication/LispMacAuthentication.java +++ b/protocols/lisp/msg/src/main/java/org/onosproject/lisp/msg/authentication/LispMacAuthentication.java
@@ -75,10 +75,10 @@ return mac.doFinal(data); } catch (NoSuchAlgorithmException e) { log.warn(NOT_SUPPORT_ALGORITHM_MSG, algorithm, e.getMessage()); - throw new RuntimeException(e); + throw new IllegalStateException(e); } catch (InvalidKeyException e) { log.warn(INVALID_KEY_MSG, key, e.getMessage()); - throw new RuntimeException(e); + throw new IllegalArgumentException(e); } } }