com.github.fashionbrot.function.SignatureVerificationFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-auth Show documentation
Show all versions of common-auth Show documentation
common-auth 认证框架 https://github.com/fashionbrot/common
The newest version!
package com.github.fashionbrot.function;
/**
* 验证签名失败调用此方法
*/
@FunctionalInterface
public interface SignatureVerificationFunction {
/**
* 验证签名失败 执行
* @param exception 失败异常
*/
void throwException(Exception exception);
}