Remove redundant exception declarations
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / EchoService.java
index 8afe07ea2ff29b5435e4989944323ac27f555d94..8951e2b4def1bf6073d12759165e45ad5e149196 100644 (file)
@@ -20,10 +20,10 @@ public class EchoService extends AbstractSimpleService<EchoInputBuilder, EchoOut
     }
 
     @Override
-    protected OfHeader buildRequest(final Xid xid, final EchoInputBuilder input) throws Exception {
+    protected OfHeader buildRequest(final Xid xid, final EchoInputBuilder input) {
         return input
                 .setXid(xid.getValue())
                 .setVersion(getVersion())
                 .build();
     }
-}
\ No newline at end of file
+}