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