Remove redundant exception declarations
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / PortModInputMessageFactoryTest.java
index b27bb279132fb564f22ced47bea3c529ace24e8a..f9032d6e87986d5e8c4fca3818554a31b57c10d0 100644 (file)
@@ -24,14 +24,15 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev13
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.PortModInput;
 
 /**
- * @author giuseppex.petralia@intel.com
+ * Unit tests for PortModInputMessageFactory.
  *
+ * @author giuseppex.petralia@intel.com
  */
 public class PortModInputMessageFactoryTest {
     private OFDeserializer<PortModInput> factory;
 
     @Before
-    public void startUp() throws Exception {
+    public void startUp() {
         DeserializerRegistry desRegistry = new DeserializerRegistryImpl();
         desRegistry.init();
         factory = desRegistry
@@ -39,7 +40,7 @@ public class PortModInputMessageFactoryTest {
     }
 
     @Test
-    public void test() throws Exception {
+    public void test() {
         ByteBuf bb = BufferHelper.buildBuffer(
                 "00 00 00 09 00 00 00 00 08 00 27 00 " + "b0 eb 00 00 00 00 00 24 00 00 00 41 00 00 01 10 00 00 00 00");
         PortModInput deserializedMessage = BufferHelper.deserialize(factory, bb);