| 1234567891011121314151617181920212223242526272829303132333435363738394041 | using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Renci.SshNet.Common{    /// <summary>    /// The exception that is thrown when there is something wrong with the server capabilities.    /// </summary>    public partial class NetConfServerException : SshException    {        /// <summary>        /// Initializes a new instance of the <see cref="NetConfServerException"/> class.        /// </summary>        public NetConfServerException()        {        }        /// <summary>        /// Initializes a new instance of the <see cref="NetConfServerException"/> class.        /// </summary>        /// <param name="message">The message.</param>        public NetConfServerException(string message)            : base(message)        {        }        /// <summary>        /// Initializes a new instance of the <see cref="NetConfServerException"/> class.        /// </summary>        /// <param name="message">The message.</param>        /// <param name="innerException">The inner exception.</param>        public NetConfServerException(string message, Exception innerException) :            base(message, innerException)        {        }    }}
 |