using System; namespace Jwt { /// /// Represents errors that occur during verification of the JWT signature. /// public class SignatureVerificationException : Exception { /// /// Initializes a new instance of the class /// with a specified error message. /// /// The message that describes the error. public SignatureVerificationException(string message) : base(message) { } } }