Files
DotNetCore.SKIT.FlurlHttpCl…/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Exceptions/WechatTenpayResponseDecryptionException.cs
2021-05-10 15:30:00 +08:00

25 lines
618 B
C#

using System;
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Exceptions
{
public class WechatTenpayResponseDecryptionException : WechatTenpayException
{
/// <inheritdoc/>
internal WechatTenpayResponseDecryptionException()
{
}
/// <inheritdoc/>
internal WechatTenpayResponseDecryptionException(string message)
: base(message)
{
}
/// <inheritdoc/>
internal WechatTenpayResponseDecryptionException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}