ThoughtWorks.VisualStudio.CardListWindow.AlertUser C# (CSharp) Метод

AlertUser() приватный статический Метод

Display a message to the user
private static AlertUser ( Exception ex ) : void
ex System.Exception
Результат void
        private static void AlertUser(Exception ex)
        {
            string msg = ex.InnerException.Data.Count > 0
                             ? string.Format(CultureInfo.CurrentCulture,"{0}\n\n\r{1}", ex.Message, ex.InnerException.Data["url"])
                             : ex.Message;
            MessageBox.Show(msg, VisualStudio.Resources.MingleExtensionTitle);
        }