Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.WeChatPay/Exceptions/PayException.cs
2022-05-14 17:45:17 +08:00

25 lines
552 B
C#

using System;
using System.Runtime.Serialization;
namespace Yi.Framework.WeChatPay.Exceptions
{
[Serializable]
public class PayException : Exception
{
public PayException()
{
}
public PayException(string message) : base(message)
{
}
public PayException(string message, Exception innerException) : base(message, innerException)
{
}
protected PayException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}