Description
NioSocketConnector.newHandle creates an IOException which is then not used. I assume this meant to be thrown instead of the original exception. That is "throw ioe;" should be replaced with "throw e"; (or simply rethrow the original exception, so that the current behaviour does not change).