mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-18 23:46:37 +08:00
添加微信支付模块
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user