2021-11-25 11:58:06 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Exceptions
|
|
|
|
|
{
|
|
|
|
|
public class WechatTenpayResponseVerificationException : WechatTenpayException
|
|
|
|
|
{
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
internal WechatTenpayResponseVerificationException()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2022-01-21 14:30:17 +08:00
|
|
|
|
internal WechatTenpayResponseVerificationException(string message)
|
2021-11-25 11:58:06 +08:00
|
|
|
|
: base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2022-01-21 14:30:17 +08:00
|
|
|
|
internal WechatTenpayResponseVerificationException(string message, Exception innerException)
|
2021-11-25 11:58:06 +08:00
|
|
|
|
: base(message, innerException)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|