mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-19 16:36:44 -05:00
Bump winforms proj c# lang to 10
no functional change
This commit is contained in:
@@ -51,9 +51,7 @@ private static void UIThreadException(object sender, ThreadExceptionEventArgs t)
|
||||
{
|
||||
result = ErrorWindow.ShowErrorDialog("An unhandled exception has occurred.\nYou can continue running PKHeX, but please report this error.", t.Exception, true);
|
||||
}
|
||||
#pragma warning disable CA1031 // Do not catch general exception types
|
||||
catch (Exception reportingException)
|
||||
#pragma warning restore CA1031 // Do not catch general exception types
|
||||
{
|
||||
HandleReportingException(t.Exception, reportingException);
|
||||
}
|
||||
@@ -85,9 +83,7 @@ private static void CurrentDomain_UnhandledException(object sender, UnhandledExc
|
||||
Error("A fatal non-UI error has occurred in PKHeX, and the details could not be displayed. Please report this to the author.");
|
||||
}
|
||||
}
|
||||
#pragma warning disable CA1031 // Do not catch general exception types
|
||||
catch (Exception reportingException)
|
||||
#pragma warning restore CA1031 // Do not catch general exception types
|
||||
{
|
||||
HandleReportingException(ex, reportingException);
|
||||
}
|
||||
@@ -124,9 +120,7 @@ private static bool EmergencyErrorLog(Exception? originalException, Exception er
|
||||
var message = (originalException?.ToString() ?? "null first exception") + Environment.NewLine + errorHandlingException;
|
||||
File.WriteAllText($"PKHeX_Error_Report {DateTime.Now:yyyyMMddHHmmss}.txt", message);
|
||||
}
|
||||
#pragma warning disable CA1031 // Do not catch general exception types
|
||||
catch (Exception)
|
||||
#pragma warning restore CA1031 // Do not catch general exception types
|
||||
{
|
||||
// We've failed to save the error details twice now. There's nothing else we can do.
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user