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