mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-03-10 00:13:40 +08:00
🎨 #3288【微信支付】修复由于微信签名探测导致的验签错误的问题
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user