14 lines
231 B
C#
14 lines
231 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Web;
|
|
|
|
namespace Mtxfw.Utility
|
|
{
|
|
public class WxPayException : Exception
|
|
{
|
|
public WxPayException(string msg) : base(msg)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |