// We don't want to log this - since it is normal for this to happen during failover/reconnect
// and we don't want to spew out stack traces in that event
// The user has access to this exeception anyway via the HornetQException initial cause
HornetQException me = new HornetQException(HornetQException.INTERNAL_ERROR, "Netty exception");
me.initCause(e.getCause());
try
{
listener.connectionException(e.getChannel().getId(), me);
active = false;
}