#1776. better messages to users. improve all exception display

This commit is contained in:
rmcrackan
2026-04-30 11:04:50 -04:00
parent 6445a758a2
commit 13bdebbe9d
5 changed files with 259 additions and 9 deletions

View File

@@ -1,5 +1,6 @@
using Dinah.Core;
using FileManager;
using LibationUiBase;
using System;
using System.Drawing;
using System.Windows.Forms;
@@ -20,7 +21,7 @@ public partial class MessageBoxAlertAdminDialog : Form
{
this.descriptionLbl.Text = text;
this.Text = caption;
this.exceptionTb.Text = $"{exception.Message}\r\n\r\n{exception.StackTrace}";
this.exceptionTb.Text = ExceptionDisplay.FormatMessageAndStackTrace(exception);
}
private void MessageBoxAlertAdminDialog_Load(object sender, EventArgs e)