feat(tenpayv3): 重新实现 CertificateManager,支持记录生效时间、过期时间等信息

This commit is contained in:
Fu Diwei
2021-11-25 11:58:06 +08:00
parent 70d05e3aaa
commit bfa6557314
9 changed files with 251 additions and 31 deletions

View File

@@ -0,0 +1,24 @@
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)
{
}
}
}