Files
DotNetCore.SKIT.FlurlHttpCl…/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/WechatTenpayException.cs

28 lines
626 B
C#
Raw Normal View History

2021-05-10 15:30:00 +08:00
using System;
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
{
/// <summary>
/// 当调用微信支付 API 出错时引发的异常。
/// </summary>
2021-08-20 22:10:16 +08:00
public class WechatTenpayException : CommonExceptionBase
2021-05-10 15:30:00 +08:00
{
/// <inheritdoc/>
public WechatTenpayException()
{
}
/// <inheritdoc/>
public WechatTenpayException(string message)
: base(message)
{
}
/// <inheritdoc/>
public WechatTenpayException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}