using System; namespace Renci.SshNet.Common { /// /// The exception that is thrown when there is something wrong with the server capabilities. /// public partial class NetConfServerException : SshException { /// /// Initializes a new instance of the class. /// public NetConfServerException() { } /// /// Initializes a new instance of the class. /// /// The message. public NetConfServerException(string message) : base(message) { } /// /// Initializes a new instance of the class. /// /// The message. /// The inner exception. public NetConfServerException(string message, Exception innerException) : base(message, innerException) { } } }