1234567891011121314151617181920 |
- using System;
- namespace Jwt
- {
- /// <summary>
- /// Represents errors that occur during verification of the JWT signature.
- /// </summary>
- public class SignatureVerificationException : Exception
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="SignatureVerificationException"/> class
- /// with a specified error message.
- /// </summary>
- /// <param name="message">The message that describes the error.</param>
- public SignatureVerificationException(string message) : base(message)
- {
- }
- }
- }
|