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