Remove unused exceptions
[netconf.git] / netconf / netconf-tcp / src / main / java / org / opendaylight / netconf / tcp / netty / ProxyServerHandler.java
index 4731b0fed965b899fc36fb35cf8b174c41697021..5843f41066f510c0caa59fbc19b9952aca435b52 100644 (file)
@@ -36,7 +36,7 @@ public class ProxyServerHandler extends ChannelInboundHandlerAdapter {
         final ProxyClientHandler clientHandler = new ProxyClientHandler(remoteCtx);
         clientBootstrap.handler(new ChannelInitializer<LocalChannel>() {
             @Override
-            public void initChannel(LocalChannel ch) throws Exception {
+            public void initChannel(LocalChannel ch) {
                 ch.pipeline().addLast(clientHandler);
             }
         });