public static void Show(Exception ex) { FE f = new FE("Warning", ex.Message, ex.StackTrace); f.ShowDialog(); }
public static void Show(string message, string title, string details) { FE f = new FE(title, message, details); f.ShowDialog(); }