Renci.SshNet.Shell.RaiseError C# (CSharp) Method

RaiseError() private method

private RaiseError ( ExceptionEventArgs e ) : void
e ExceptionEventArgs
return void
        private void RaiseError(ExceptionEventArgs e)
        {
            var handler = ErrorOccurred;
            if (handler != null)
            {
                handler(this, e);
            }
        }