diff --git a/src/BizHawk.Common/Ranges.cs b/src/BizHawk.Common/Ranges.cs
index f2296743ea..451e669f05 100644
--- a/src/BizHawk.Common/Ranges.cs
+++ b/src/BizHawk.Common/Ranges.cs
@@ -67,7 +67,8 @@ namespace BizHawk.Common
{
private const ulong MIN_LONG_NEGATION_AS_ULONG = 9223372036854775808UL;
- private static readonly ArithmeticException ExclusiveRangeMinValExc = new ArithmeticException("exclusive range end is min value of integral type");
+ private static ArithmeticException ExclusiveRangeMinValExc
+ => new("exclusive range end is min value of integral type");
/// if it's contained in , or else whichever bound of is closest to
public static T ConstrainWithin(this T value, Range range) where T : unmanaged, IComparable => value.CompareTo(range.Start) < 0