de6d4644创建于 2024年11月4日历史提交
/*
 * Copyright (c) Huawei Technologies Co., Ltd. 2022-2024. All rights reserved.
 */
package jwt4cj

public class AlgorithmMismatchException <: JWTVerificationException {
    public init(message: String) {
        super(message)
    }
}