mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-29 09:54:44 +08:00
28 lines
625 B
C#
28 lines
625 B
C#
using System;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.OpenAI
|
|
{
|
|
/// <summary>
|
|
/// 当调用微信智能对话 API 出错时引发的异常。
|
|
/// </summary>
|
|
public class WechatChatbotException : CommonException
|
|
{
|
|
/// <inheritdoc/>
|
|
public WechatChatbotException()
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public WechatChatbotException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public WechatChatbotException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|