feat(tenpayv3): 验签时不再抛出异常

This commit is contained in:
Fu Diwei
2021-08-02 22:06:22 +08:00
parent 9e6bd2e824
commit 23b6b94335
3 changed files with 12 additions and 71 deletions

View File

@@ -1,24 +0,0 @@
using System;
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Exceptions
{
public class WechatTenpayResponseVerificationException : WechatTenpayException
{
/// <inheritdoc/>
internal WechatTenpayResponseVerificationException()
{
}
/// <inheritdoc/>
internal WechatTenpayResponseVerificationException(string message)
: base(message)
{
}
/// <inheritdoc/>
internal WechatTenpayResponseVerificationException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}