Renci.SshNet.Common.ExceptionEventArgs.ExceptionEventArgs C# (CSharp) Method

ExceptionEventArgs() public method

Initializes a new instance of the ExceptionEventArgs class.
public ExceptionEventArgs ( Exception exception ) : System
exception System.Exception An System.Exception that represents the error that occurred.
return System
        public ExceptionEventArgs(Exception exception)
        {
            Exception = exception;
        }
    }
ExceptionEventArgs