Example #1
0
 public static void ThrowException(Exception e)
 {
     if (e is System.Threading.ThreadAbortException)
     {
         return;
     }
     CurrentExceptionManager.ThrowException(e);
 }
Example #2
0
 public static void ClearException(String exception)
 {
     CurrentExceptionManager.ClearException(exception);
 }
Example #3
0
 public static void ClearAllExceptions()
 {
     CurrentExceptionManager.ClearAllExceptions();
 }
Example #4
0
 public static void ShowErrorMessageBox(string caption)
 {
     CurrentExceptionManager.ShowErrorMessageBox(caption);
 }
Example #5
0
 public static void SetExtraInfomation(string extraInfo)
 {
     CurrentExceptionManager.SetExtraInfomation(extraInfo);
 }
Example #6
0
 public static void ShowErrorMessageBox()
 {
     CurrentExceptionManager.ShowErrorMessageBox();
 }
Example #7
0
 public static void ShowFinishOperationMessageBox(string opName)
 {
     CurrentExceptionManager.ShowFinishOperationMessageBox(opName);
 }
Example #8
0
 public static void LogFile(String info)
 {
     CurrentExceptionManager.LogFile(info);
 }
Example #9
0
 public static void ThrowException(String error, bool needDumpStackTrace = true)
 {
     CurrentExceptionManager.ThrowException(error, needDumpStackTrace);
 }