Remove unused exceptions
[controller.git] / opendaylight / md-sal / sal-dummy-distributed-datastore / src / main / java / org / opendaylight / controller / dummy / datastore / DummyShardManager.java
index 93d5c67bbc12f463bb29aebf1c9d2d452fc76251..a25a0814c26f77b3bb6de0942d089bc8e76d304d 100644 (file)
@@ -14,12 +14,12 @@ import akka.actor.UntypedActor;
 
 public class DummyShardManager extends UntypedActor {
     public DummyShardManager(Configuration configuration, String memberName, String[] shardNames,
-            String type) throws Exception {
+            String type) {
         new DummyShardsCreator(configuration, context(), memberName, shardNames, type).create();
     }
 
     @Override
-    public void onReceive(Object message) throws Exception {
+    public void onReceive(Object message) {
 
     }