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