🎨 #3288【微信支付】修复由于微信签名探测导致的验签错误的问题

This commit is contained in:
je45
2024-11-29 16:29:37 +08:00
committed by GitHub
parent 577f2e6a0b
commit c6a38ae7dd
3 changed files with 43 additions and 2 deletions

View File

@@ -0,0 +1,31 @@
package com.github.binarywang.wxpay.exception;
/**
* <pre>
* 微信支付签名探测异常类
* </pre>
* @author je45
* @date 2024/11/27 9:35
*/
public class WxSignTestException extends WxPayException {
private static final long serialVersionUID = -303371909244098058L;
/**
* Instantiates a new Wx pay exception.
*
* @param customErrorMsg the custom error msg
*/
public WxSignTestException(String customErrorMsg) {
super(customErrorMsg);
}
/**
* Instantiates a new Wx pay exception.
*
* @param customErrorMsg the custom error msg
* @param tr the tr
*/
public WxSignTestException(String customErrorMsg, Throwable tr) {
super(customErrorMsg, tr);
}
}