(ChannelHandlerContext ctx, ExceptionEvent e)
| 58 | } |
| 59 | |
| 60 | @Override |
| 61 | public void exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) throws Exception { |
| 62 | e.getCause().printStackTrace(); |
| 63 | |
| 64 | Channel ch = e.getChannel(); |
| 65 | ch.close(); |
| 66 | latch.countDown(); |
| 67 | } |
| 68 | } |
nothing calls this directly
no test coverage detected