public static DialogResult Show(Form parent, Exception ex) { var ed = new ExceptionDetails(ex); return(Show(parent, ed.ExceptionType, ed.Details, Constants.MILLISECONDS_LEFT)); }
public static DialogResult Show(Exception ex, int intervalInMilliseconds) { var ed = new ExceptionDetails(ex); return(Show(null, ed.ExceptionType, ed.Details, intervalInMilliseconds)); }