DotNetCore.SKIT.FlurlHttpCl.../src/SKIT.FlurlHttpClient.Wechat.Api/WechatApiException.cs
2022-01-14 14:37:52 +08:00

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)
{
}
}
}