Files
DotNetCore.SKIT.FlurlHttpCl…/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/WechatTenpayException.cs
2021-08-20 22:10:16 +08:00

28 lines
626 B
C#

using System;
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
{
/// <summary>
/// 当调用微信支付 API 出错时引发的异常。
/// </summary>
public class WechatTenpayException : CommonExceptionBase
{
/// <inheritdoc/>
public WechatTenpayException()
{
}
/// <inheritdoc/>
public WechatTenpayException(string message)
: base(message)
{
}
/// <inheritdoc/>
public WechatTenpayException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}