ProxyException.cs 1.1 KB

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