mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-18 22:35:46 +08:00
28 lines
601 B
C#
28 lines
601 B
C#
using System;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api
|
|
{
|
|
/// <summary>
|
|
/// 当调用微信 API 出错时引发的异常。
|
|
/// </summary>
|
|
public class WechatApiException : CommonExceptionBase
|
|
{
|
|
/// <inheritdoc/>
|
|
public WechatApiException()
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public WechatApiException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public WechatApiException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|