BatchLowResFdrOptimizer.BatchLowResFdrOptimizer.onThrowException C# (CSharp) Méthode

onThrowException() protected méthode

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

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