mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-20 02:29:40 +08:00
28 lines
612 B
C#
28 lines
612 B
C#
using System;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Work
|
|
{
|
|
/// <summary>
|
|
/// 当调用企业微信 API 出错时引发的异常。
|
|
/// </summary>
|
|
public class WechatWorkException : CommonExceptionBase
|
|
{
|
|
/// <inheritdoc/>
|
|
public WechatWorkException()
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public WechatWorkException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public WechatWorkException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|