mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-30 10:24:42 +08:00
25 lines
610 B
C#
25 lines
610 B
C#
using System;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Exceptions
|
|
{
|
|
public class WechatTenpayRequestSignatureException : WechatTenpayException
|
|
{
|
|
/// <inheritdoc/>
|
|
internal WechatTenpayRequestSignatureException()
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
internal WechatTenpayRequestSignatureException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
internal WechatTenpayRequestSignatureException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|