using System;
namespace SKIT.FlurlHttpClient.Wechat.Api
{
///
/// 当调用微信 API 出错时引发的异常。
///
public class WechatApiException : CommonExceptionBase
{
///
public WechatApiException()
{
}
///
public WechatApiException(string message)
: base(message)
{
}
///
public WechatApiException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}