public static void ShowError(string friendMessage, Exception ex) { if (ex == null) { return; } frmErrorBox f = new frmErrorBox(); Exception realex = getrealexp(ex); try { string message = string.Empty; if (realex is MessageSecurityException) { FaultException exception = realex.InnerException as FaultException; if (exception != null) { message = exception.Message; } } f.SetException(realex); f.txtError.Text = friendMessage + message; f.ShowDialog(); } finally { f.Dispose(); } }
public static void ShowError(Exception ex) { frmErrorBox f = new frmErrorBox(); try { f.SetException(ex); f.ShowDialog(); } finally { f.Dispose(); } }