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