123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- #region Apache License Version 2.0
- #endregion Apache License Version 2.0
- using Senparc.CO2NET.Exceptions;
- using System;
- namespace Senparc.Weixin.Exceptions
- {
-
-
-
- public class WeixinException : BaseException
- {
-
-
-
- public string AccessTokenOrAppId { get; set; }
-
-
-
-
-
- public WeixinException(string message, bool logged = false)
- : this(message, null, logged)
- {
- }
-
-
-
-
-
-
- public WeixinException(string message, Exception inner, bool logged = false)
- : base(message, inner, true)
- {
- if (!logged)
- {
-
- WeixinTrace.WeixinExceptionLog(this);
- }
- }
- }
- }
|