SshException
The exception that is thrown when an SSH exception occurs.
            
                using System;
using System.Runtime.CompilerServices;
namespace Renci.SshNet.Common
{
    [NullableContext(2)]
    [Nullable(0)]
    public class SshException : Exception
    {
        public SshException()
        {
        }
        public SshException(string message)
            : base(message)
        {
        }
        public SshException(string message, Exception innerException)
            : base(message, innerException)
        {
        }
    }
}