<PackageReference Include="SSH.NET" Version="2016.1.0-beta3" />

SshPassPhraseNullOrEmptyException

The exception that is thrown when pass phrase for key file is empty or null
using System; namespace Renci.SshNet.Common { public class SshPassPhraseNullOrEmptyException : SshException { public SshPassPhraseNullOrEmptyException() { } public SshPassPhraseNullOrEmptyException(string message) : base(message) { } public SshPassPhraseNullOrEmptyException(string message, Exception innerException) : base(message, innerException) { } } }