Remove unused exceptions
[controller.git] / opendaylight / md-sal / cds-access-client / src / test / java / org / opendaylight / controller / cluster / access / client / ClientActorContextTest.java
index 4dcbccbfb859d030b8313c3480c614a7302c4d4d..e8ac87fb962af145efc73ae8ee9c2a0f0352b407 100644 (file)
@@ -62,20 +62,20 @@ public class ClientActorContextTest {
     }
 
     @Test
-    public void testExecuteInActor() throws Exception {
+    public void testExecuteInActor() {
         ctx.executeInActor(command);
         probe.expectMsg(command);
     }
 
     @Test
-    public void testExecuteInActorScheduled() throws Exception {
+    public void testExecuteInActorScheduled() {
         final FiniteDuration delay = Duration.apply(1, TimeUnit.SECONDS);
         ctx.executeInActor(command, delay);
         probe.expectMsg(command);
     }
 
     @After
-    public void tearDown() throws Exception {
+    public void tearDown() {
         TestKit.shutdownActorSystem(system);
     }
 }