mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-19 18:22:24 +08:00
25 lines
626 B
C#
25 lines
626 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Exceptions
|
|||
|
{
|
|||
|
public class WechatTenpayResponseVerificationException : WechatTenpayException
|
|||
|
{
|
|||
|
/// <inheritdoc/>
|
|||
|
internal WechatTenpayResponseVerificationException()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
/// <inheritdoc/>
|
|||
|
internal WechatTenpayResponseVerificationException(string message)
|
|||
|
: base(message)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
/// <inheritdoc/>
|
|||
|
internal WechatTenpayResponseVerificationException(string message, Exception innerException)
|
|||
|
: base(message, innerException)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|