<PackageReference Include="SSH.NET" Version="2020.0.0-beta1" />

SshAuthenticationException

using System; namespace Renci.SshNet.Common { public class SshAuthenticationException : SshException { public SshAuthenticationException() { } public SshAuthenticationException(string message) : base(message) { } public SshAuthenticationException(string message, Exception innerException) : base(message, innerException) { } } }