SignatureVerificationException.cs 588 B

1234567891011121314151617181920
  1. using System;
  2. namespace Jwt
  3. {
  4. /// <summary>
  5. /// Represents errors that occur during verification of the JWT signature.
  6. /// </summary>
  7. public class SignatureVerificationException : Exception
  8. {
  9. /// <summary>
  10. /// Initializes a new instance of the <see cref="SignatureVerificationException"/> class
  11. /// with a specified error message.
  12. /// </summary>
  13. /// <param name="message">The message that describes the error.</param>
  14. public SignatureVerificationException(string message) : base(message)
  15. {
  16. }
  17. }
  18. }