コード例 #1
0
 public static WdtException Error(this Exception ex, string errorCode, string msg, params object[] processData)
 => WdtException.Error(ex, errorCode, msg, processData);
コード例 #2
0
 public static WdtException Error(this Exception ex, string errorCode, string msg)
 => WdtException.Error(ex, errorCode, msg);
コード例 #3
0
 public static WdtException Error(this Exception ex, string msg)
 => WdtException.Error(ex, null, msg);
コード例 #4
0
        /// <summary>
        /// 输出严重异常
        /// </summary>
        /// <param name="ex"></param>
        /// <returns></returns>

        public static WdtException Error(this Exception ex)
        => WdtException.Error(ex);
コード例 #5
0
 public static WdtException Info(this Exception ex, string errorCode, string msg)
 => WdtException.Info(ex, errorCode, msg);
コード例 #6
0
 public static WdtException Info(this Exception ex, string msg)
 => WdtException.Info(ex, null, msg);