mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-19 06:36:24 +08:00
25 lines
658 B
C#
25 lines
658 B
C#
using System;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.TenpayBusiness.Exceptions
|
|
{
|
|
public class WechatTenpayBusinessRequestEncryptionException : WechatTenpayBusinessException
|
|
{
|
|
/// <inheritdoc/>
|
|
internal WechatTenpayBusinessRequestEncryptionException()
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
internal WechatTenpayBusinessRequestEncryptionException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
internal WechatTenpayBusinessRequestEncryptionException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|