Skip to content

Commit

Permalink
style: Modify the order of catch
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuisyuu authored Mar 20, 2024
1 parent 2f041a0 commit 214dd56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Manager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ public static void Load(Plugin plugin)
{
return;
}
catch (FileLoadException)
catch (EntryPointNotFoundException)
{
return;
}
catch (EntryPointNotFoundException)
catch (FileLoadException)
{
return;
}
Expand Down

0 comments on commit 214dd56

Please sign in to comment.