using System; namespace Renci.SshNet.Common { /// /// The exception that is thrown when authentication failed. /// public partial class SshAuthenticationException : SshException { /// /// Initializes a new instance of the class. /// public SshAuthenticationException() { } /// /// Initializes a new instance of the class. /// /// The message. public SshAuthenticationException(string message) : base(message) { } /// /// Initializes a new instance of the class. /// /// The message. /// The inner exception. public SshAuthenticationException(string message, Exception innerException) : base(message, innerException) { } } }