ExceptionEventArgs
Provides data for the ErrorOccured events.
using System;
namespace Renci.
SshNet.
Common
{
public class ExceptionEventArgs :
EventArgs
{
public Exception Exception { get; }
public ExceptionEventArgs(
Exception exception)
{
Exception =
exception;
}
}
}