using System; using System.Runtime.Serialization; namespace Renci.SshNet.Common { /// /// The exception that is thrown when there is something wrong with the server capabilities. /// [Serializable] public partial class NetConfServerException : SshException { /// /// Initializes a new instance of the class. /// /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. /// The parameter is null. /// The class name is null or is zero (0). protected NetConfServerException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }