public void connected(Channel channel) throws IOException {
   try {
     TCPChannel newChannel = new ExcTCPChannel((TCPChannel) channel);
     cb.connected(newChannel);
   } catch (Exception e) {
     log.log(Level.WARNING, channel + "Exception", e);
   }
 }