NetConfServerException.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. namespace Renci.SshNet.Common
  3. {
  4. /// <summary>
  5. /// The exception that is thrown when there is something wrong with the server capabilities.
  6. /// </summary>
  7. public partial class NetConfServerException : SshException
  8. {
  9. /// <summary>
  10. /// Initializes a new instance of the <see cref="NetConfServerException"/> class.
  11. /// </summary>
  12. public NetConfServerException()
  13. {
  14. }
  15. /// <summary>
  16. /// Initializes a new instance of the <see cref="NetConfServerException"/> class.
  17. /// </summary>
  18. /// <param name="message">The message.</param>
  19. public NetConfServerException(string message)
  20. : base(message)
  21. {
  22. }
  23. /// <summary>
  24. /// Initializes a new instance of the <see cref="NetConfServerException"/> class.
  25. /// </summary>
  26. /// <param name="message">The message.</param>
  27. /// <param name="innerException">The inner exception.</param>
  28. public NetConfServerException(string message, Exception innerException) :
  29. base(message, innerException)
  30. {
  31. }
  32. }
  33. }