mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-29 18:04:42 +08:00
28 lines
617 B
C#
28 lines
617 B
C#
using System;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3
|
|
{
|
|
/// <summary>
|
|
/// 当调用微信支付 API 出错时引发的异常。
|
|
/// </summary>
|
|
public class WechatTenpayException : CommonException
|
|
{
|
|
/// <inheritdoc/>
|
|
public WechatTenpayException()
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public WechatTenpayException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public WechatTenpayException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|