Remove unused exceptions
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / databroker / actors / dds / ClientTransactionTest.java
index 9dd5d7b7aaa0f74b5ac8c2defa8239895f3db35a..3fe913bafb5c334c802284c3666961c83345279a 100644 (file)
@@ -62,7 +62,7 @@ public class ClientTransactionTest extends AbstractClientHandleTest<ClientTransa
     }
 
     @Test
-    public void testOpenCloseCursor() throws Exception {
+    public void testOpenCloseCursor() {
         final DOMDataTreeWriteCursor cursor = getHandle().openCursor();
         getHandle().closeCursor(cursor);
         getHandle().openCursor().delete(PATH.getLastPathArgument());
@@ -92,19 +92,19 @@ public class ClientTransactionTest extends AbstractClientHandleTest<ClientTransa
     }
 
     @Test
-    public void testDelete() throws Exception {
+    public void testDelete() {
         getHandle().delete(PATH);
         verify(modification).delete(PATH);
     }
 
     @Test
-    public void testMerge() throws Exception {
+    public void testMerge() {
         getHandle().merge(PATH, DATA);
         verify(modification).merge(PATH, DATA);
     }
 
     @Test
-    public void testWrite() throws Exception {
+    public void testWrite() {
         getHandle().write(PATH, DATA);
         verify(modification).write(PATH, DATA);
     }