feat(tenpayv3): 重命名回调通知事件相关的模型

This commit is contained in:
Fu Diwei
2021-05-28 19:08:11 +08:00
parent e0bb33d266
commit 782d46cad9
20 changed files with 178 additions and 119 deletions

View File

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

View File

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