PRoConEvents.MULTIbalancer.ConsoleException C# (CSharp) Method

ConsoleException() public method

public ConsoleException ( Exception e ) : void
e System.Exception
return void
        public void ConsoleException(Exception e)
        {
            if (e.GetType() == typeof(ThreadAbortException)
              || e.GetType() == typeof(ThreadInterruptedException)
              || e.GetType() == typeof(CannotUnloadAppDomainException)
            )
            return;
            if (DebugLevel >= 3) ConsoleWrite(e.ToString(), MessageType.Exception, 3);
        }
MULTIbalancer