mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-03-10 00:13:36 +08:00
28 lines
607 B
C#
28 lines
607 B
C#
using System;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat
|
|
{
|
|
/// <summary>
|
|
/// SKIT.FlurlHttpClient.Wechat 引发的异常基类。
|
|
/// </summary>
|
|
public abstract class WechatExceptionBase : Exception
|
|
{
|
|
/// <inheritdoc/>
|
|
public WechatExceptionBase()
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public WechatExceptionBase(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public WechatExceptionBase(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|