Remove redundant exception declarations
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / singlelayer / SingleLayerGetAsyncConfigService.java
index 69f09448a35a2c28cb608ac4a20debfb7cc7c77b..1e89489b2d015ed8fd026a41d1ff38ce56a7493a 100644 (file)
@@ -12,7 +12,6 @@ import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
 import org.opendaylight.openflowplugin.api.openflow.device.Xid;
 import org.opendaylight.openflowplugin.impl.services.AbstractSimpleService;
-import org.opendaylight.openflowplugin.impl.services.util.ServiceException;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.async.config.service.rev170619.AsyncConfigMessage;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.async.config.service.rev170619.GetAsyncInput;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetAsyncInputBuilder;
@@ -26,7 +25,7 @@ public class SingleLayerGetAsyncConfigService extends AbstractSimpleService<GetA
     }
 
     @Override
-    protected OfHeader buildRequest(Xid xid, GetAsyncInput input) throws ServiceException {
+    protected OfHeader buildRequest(Xid xid, GetAsyncInput input) {
         return new GetAsyncInputBuilder().setVersion(getVersion()).setXid(xid.getValue()).build();
     }
 }
\ No newline at end of file