mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Made FileNotFoundException check more specific
This commit is contained in:
parent
26925ad528
commit
18f08b93a3
1 changed files with 16 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
using System;
|
||||
using System.IO;
|
||||
using System.Reflection;
|
||||
using System.Threading;
|
||||
using System.Windows.Forms;
|
||||
|
||||
|
@ -28,14 +29,26 @@ namespace PKHeX.WinForms
|
|||
{
|
||||
StartPKHeX();
|
||||
}
|
||||
catch (FileNotFoundException)
|
||||
catch (FileNotFoundException ex)
|
||||
{
|
||||
// Check whether or not the exception was from missing PKHeX.Core, rather than something else in the constructor of Main
|
||||
if (ex.TargetSite == typeof(Program).GetMethod(nameof(StartPKHeX), BindingFlags.Static | BindingFlags.NonPublic))
|
||||
{
|
||||
// Exception came from StartPKHeX and (probably) corresponds to missing PKHeX.Core
|
||||
MessageBox.Show("Could not locate PKHeX.Core.dll. Make sure you're running PKHeX together with its code library. Usually caused when all files are not extracted.", "PKHeX Error", MessageBoxButtons.OK, MessageBoxIcon.Stop);
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Exception came from Main
|
||||
throw;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void StartPKHeX()
|
||||
private static void StartPKHeX()
|
||||
{
|
||||
|
||||
// Run the application
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
|
|
Loading…
Reference in a new issue