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