WxPayException.cs 208 B

123456789101112
  1. using System;
  2. namespace WingPaymentService.Common.WeChat
  3. {
  4. public class WxPayException : Exception
  5. {
  6. public WxPayException(string msg) : base(msg)
  7. {
  8. }
  9. }
  10. }