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);
            }
        }