Remove unused exceptions
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / netconf / sal / streams / websockets / WebSocketServerInitializer.java
index c13535bf1946a16f0a7a084fca3c1e32668c38f8..365e982c49113908ec249951a04a92e554a6414b 100644 (file)
@@ -21,7 +21,7 @@ import io.netty.handler.codec.http.HttpServerCodec;
 public class WebSocketServerInitializer extends ChannelInitializer<SocketChannel> {
 
     @Override
-    protected void initChannel(final SocketChannel ch) throws Exception {
+    protected void initChannel(final SocketChannel ch) {
         ChannelPipeline pipeline = ch.pipeline();
         pipeline.addLast("codec-http", new HttpServerCodec());
         pipeline.addLast("aggregator", new HttpObjectAggregator(65536));