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