public void HandleException()

in src/main/csharp/Connection.cs [355:365]


        public void HandleException(System.Exception e)
        {
            if(ExceptionListener != null && !this.closed)
            {
                ExceptionListener(e);
            }
            else
            {
                Tracer.Error(e);
            }
        }