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