Exemplo n.º 1
0
 @Override
 public void exceptionCaught(IoSession session, Throwable cause) throws Exception {
   // TODO Auto-generated method stub
   super.exceptionCaught(session, cause);
 }
Exemplo n.º 2
0
 @Override
 public void exceptionCaught(IoSession session, Throwable cause) throws Exception {
   System.out.println("exception");
   session.close(true);
   super.exceptionCaught(session, cause);
 }
Exemplo n.º 3
0
 @Override
 public void exceptionCaught(IoSession session, Throwable cause) throws Exception {
   cause.printStackTrace();
   super.exceptionCaught(session, cause);
 }