BatchLowResFdrOptimizer.BatchLowResFdrOptimizer.onThrowException C# (CSharp) Метод

onThrowException() защищенный Метод

protected onThrowException ( ExceptionEventArgs e ) : void
e ExceptionEventArgs
Результат void
        protected virtual void onThrowException(ExceptionEventArgs e)
        {
            EventHandler<ExceptionEventArgs> handler = ThrowException;

            if(handler != null)
            {
                handler(this, e);
            }
        }