SshAuthenticationException.cs 1.2 KB

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