using System; #if FEATURE_BINARY_SERIALIZATION using System.Runtime.Serialization; #endif // FEATURE_BINARY_SERIALIZATION namespace Renci.SshNet.Common { /// /// The exception that is thrown when pass phrase for key file is empty or . /// #if FEATURE_BINARY_SERIALIZATION [Serializable] #endif // FEATURE_BINARY_SERIALIZATION public 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) { } #if FEATURE_BINARY_SERIALIZATION /// /// Initializes a new instance of the class. /// /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. /// The parameter is null. /// The class name is null or is zero (0). protected SshPassPhraseNullOrEmptyException(SerializationInfo info, StreamingContext context) : base(info, context) { } #endif // FEATURE_BINARY_SERIALIZATION } }