Remove unused exceptions
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / java / org / opendaylight / controller / remote / rpc / TerminationMonitor.java
index c52ba2a747bfc45899413efe0cd5eb014db57b1a..127238942bdb7328ce9d946eca12479a8c8242f9 100644 (file)
@@ -21,7 +21,7 @@ public class TerminationMonitor extends UntypedActor {
         LOG.debug("Created TerminationMonitor");
     }
 
-    @Override public void onReceive(Object message) throws Exception {
+    @Override public void onReceive(Object message) {
         if (message instanceof Terminated) {
             Terminated terminated = (Terminated) message;
             LOG.debug("Actor terminated : {}", terminated.actor());