Remove unused exceptions
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / databroker / actors / dds / VotingFutureTest.java
index c2c55a4a73c678a2341aeb15d3f6a01603844fd0..cdc1f78218c15bbfa9b0680cff58e668f62e61db 100644 (file)
@@ -29,14 +29,14 @@ public class VotingFutureTest {
     private VotingFuture<Object> future;
 
     @Before
-    public void setUp() throws Exception {
+    public void setUp() {
         result = new Object();
         future = new VotingFuture<>(result, 3);
         executor = Executors.newScheduledThreadPool(1);
     }
 
     @After
-    public void tearDown() throws Exception {
+    public void tearDown() {
         executor.shutdownNow();
     }