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

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