NetConfServerException
The exception that is thrown when there is something wrong with the server capabilities.
            
                using System;
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
namespace Renci.SshNet.Common
{
    [Serializable]
    [System.Runtime.CompilerServices.NullableContext(2)]
    [System.Runtime.CompilerServices.Nullable(0)]
    public class NetConfServerException : SshException
    {
        public NetConfServerException()
        {
        }
        public NetConfServerException(string message)
            : base(message)
        {
        }
        public NetConfServerException(string message, Exception innerException)
            : base(message, innerException)
        {
        }
        [System.Runtime.CompilerServices.NullableContext(1)]
        protected NetConfServerException(SerializationInfo info, StreamingContext context)
            : base(info, context)
        {
        }
    }
}