Remove redundant exception declarations
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / services / sal / FlowCapableTransactionServiceImplTest.java
index d79d1d3bc2c68405979c705cf51d7a203186f905..e612add4ee8e2db90fc60846c5eca63dfcf7150d 100644 (file)
@@ -22,7 +22,7 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
 
 /**
- * Test for {@link org.opendaylight.openflowplugin.impl.services.sal.FlowCapableTransactionServiceImpl}.
+ * Test for {@link FlowCapableTransactionServiceImpl}.
  */
 public class FlowCapableTransactionServiceImplTest extends ServiceMocking {
 
@@ -36,7 +36,7 @@ public class FlowCapableTransactionServiceImplTest extends ServiceMocking {
     }
 
     @Test
-    public void testBuildRequest() throws Exception {
+    public void testBuildRequest() {
         SendBarrierInput sendBarrierInput = buildSendBarrierInput();
 
         final OfHeader request = flowCapableTransactionService.buildRequest(new Xid(DUMMY_XID_VALUE), sendBarrierInput);
@@ -45,7 +45,7 @@ public class FlowCapableTransactionServiceImplTest extends ServiceMocking {
     }
 
     @Test
-    public void testSendBarrier() throws Exception {
+    public void testSendBarrier() {
         SendBarrierInput sendBarrierInput = buildSendBarrierInput();
         flowCapableTransactionService.sendBarrier(sendBarrierInput);
         verify(mockedRequestContextStack).createRequestContext();