From 90fe31529e39c3d5ae4953fbf0370da9720c4262 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Thu, 14 Jul 2022 22:54:10 +1000 Subject: [PATCH] Replace `InvalidDataException` with `InvalidOperationException` This should be safe because we never filter caught exceptions by this type. I assume these were all typos, this exception has something to do with Streams. --- .../Base Implementations/CodeDataLog.cs | 10 +++++----- .../Nintendo/NES/Boards/MapperPropAttribute.cs | 2 +- .../Consoles/Nintendo/NES/NES.iNES.cs | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/BizHawk.Emulation.Common/Base Implementations/CodeDataLog.cs b/src/BizHawk.Emulation.Common/Base Implementations/CodeDataLog.cs index 90b282f18b..cb28e261ac 100644 --- a/src/BizHawk.Emulation.Common/Base Implementations/CodeDataLog.cs +++ b/src/BizHawk.Emulation.Common/Base Implementations/CodeDataLog.cs @@ -99,7 +99,7 @@ namespace BizHawk.Emulation.Common return true; } - /// + /// /// is not the same length as , or /// any value differs in size from the corresponding value in /// @@ -107,7 +107,7 @@ namespace BizHawk.Emulation.Common { if (Count != other.Count) { - throw new InvalidDataException("Dictionaries must have the same number of keys!"); + throw new InvalidOperationException("Dictionaries must have the same number of keys!"); } foreach (var (scope, fromData) in other) @@ -116,7 +116,7 @@ namespace BizHawk.Emulation.Common if (fromData.Length != toData.Length) { - throw new InvalidDataException("Memory regions must be the same size!"); + throw new InvalidOperationException("Memory regions must be the same size!"); } for (int i = 0; i < toData.Length; i++) @@ -177,7 +177,7 @@ namespace BizHawk.Emulation.Common return SaveInternal(new MemoryStream(), false); } - /// contents of do not begin with valid file header + /// contents of do not begin with valid file header public void Load(Stream s) { var br = new BinaryReader(s); @@ -186,7 +186,7 @@ namespace BizHawk.Emulation.Common { "BIZHAWK-CDL-1" => "PCE", "BIZHAWK-CDL-2" => br.ReadString().TrimEnd(' '), - _ => throw new InvalidDataException("File is not a BizHawk CDL file!"), + _ => throw new InvalidOperationException("File is not a BizHawk CDL file!"), }; int count = br.ReadInt32(); for (int i = 0; i < count; i++) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MapperPropAttribute.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MapperPropAttribute.cs index 685429eb82..9e333acdd8 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MapperPropAttribute.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MapperPropAttribute.cs @@ -50,7 +50,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES } catch (Exception e) when (e is InvalidCastException || e is FormatException || e is OverflowException) { - throw new InvalidDataException("Auto Mapper Properties were in a bad format!", e); + throw new InvalidOperationException("Auto Mapper Properties were in a bad format!", e); } } diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.iNES.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.iNES.cs index 757646148b..430e4c7c96 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.iNES.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.iNES.cs @@ -11,7 +11,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES private static int iNES2Wram(int i) { if (i == 0) return 0; - if (i == 15) throw new InvalidDataException(); + if (i == 15) throw new InvalidOperationException(); return 1 << (i + 6); }