diff --git a/PKHeX.WinForms/MainWindow/Main.cs b/PKHeX.WinForms/MainWindow/Main.cs index 8319db6a6..d48873a9f 100644 --- a/PKHeX.WinForms/MainWindow/Main.cs +++ b/PKHeX.WinForms/MainWindow/Main.cs @@ -3424,7 +3424,7 @@ private void clickExportSAV(object sender, EventArgs e) } catch (Exception x) { - if (x is UnauthorizedAccessException || x is FileNotFoundException) + if (x is UnauthorizedAccessException || x is FileNotFoundException || x is IOException) WinFormsUtil.Error("Unable to save." + Environment.NewLine + x.Message, "If destination is a removable disk (SD card), please ensure the write protection switch is not set."); else throw;