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