Cleanup RuntimeException throws
[mdsal.git] / binding / mdsal-binding-dom-adapter / src / main / java / org / opendaylight / mdsal / binding / dom / adapter / invoke / NotificationListenerInvoker.java
index 5c5dd1dd1c6b3c8155889aed81ac760c335af81d..749476a25e6f9f9e207a968b5f1b5b27ea1bcd06 100644 (file)
@@ -105,7 +105,7 @@ public final class NotificationListenerInvoker {
             invoker.invokeExact(impl, input);
         } catch (final Throwable e) {
             Throwables.throwIfUnchecked(e);
-            throw new RuntimeException(e);
+            throw new IllegalStateException(e);
         }
     }
 }