BatchLowResFdrOptimizer.BatchLowResFdrOptimizer.onThrowException C# (CSharp) Method

onThrowException() protected method

protected onThrowException ( ExceptionEventArgs e ) : void
e ExceptionEventArgs
return void
        protected virtual void onThrowException(ExceptionEventArgs e)
        {
            EventHandler<ExceptionEventArgs> handler = ThrowException;

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