mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-21 02:58:06 +08:00
feat(work): 导入企业微信 API 客户端项目
This commit is contained in:
27
src/SKIT.FlurlHttpClient.Wechat.Work/WechatWorkException.cs
Normal file
27
src/SKIT.FlurlHttpClient.Wechat.Work/WechatWorkException.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Work
|
||||
{
|
||||
/// <summary>
|
||||
/// 当调用企业微信 API 出错时引发的异常。
|
||||
/// </summary>
|
||||
public class WechatWorkException : WechatExceptionBase
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
public WechatWorkException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
public WechatWorkException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
public WechatWorkException(string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user