Remove unused exceptions
[netconf.git] / netconf / netconf-netty-util / src / main / java / org / opendaylight / netconf / nettyutil / AbstractNetconfSessionNegotiator.java
index b6a26804fd3ca9879dd170e879cc509fd51e667a..065a5bc9c42794d518170b3f9ec052e4dc4ffd85 100644 (file)
@@ -141,7 +141,7 @@ public abstract class AbstractNetconfSessionNegotiator<P extends NetconfSessionP
 
                             channel.close().addListener(new GenericFutureListener<ChannelFuture>() {
                                 @Override
-                                public void operationComplete(final ChannelFuture future) throws Exception {
+                                public void operationComplete(final ChannelFuture future) {
                                     if (future.isSuccess()) {
                                         LOG.debug("Channel {} closed: success", future.channel());
                                     } else {