<PackageReference Include="SSH.NET" Version="2025.1.0" />

SshPassPhraseNullOrEmptyException

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) { } } }