Index: Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsInputStepSizeExtensions.cs =================================================================== diff -u -r8efe4bdfd7e47208edb8585a8ac32ebcd56635c0 -rae93bd6b8ccbffa91f7c5c10e898736b5919b73d --- Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsInputStepSizeExtensions.cs (.../WaveConditionsInputStepSizeExtensions.cs) (revision 8efe4bdfd7e47208edb8585a8ac32ebcd56635c0) +++ Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsInputStepSizeExtensions.cs (.../WaveConditionsInputStepSizeExtensions.cs) (revision ae93bd6b8ccbffa91f7c5c10e898736b5919b73d) @@ -33,6 +33,7 @@ /// /// The step size to get a real value for. /// The real value of . + /// Thrown when when using an invalid stepsize. public static double AsValue(this WaveConditionsInputStepSize stepSize) { switch (stepSize) @@ -44,7 +45,7 @@ case WaveConditionsInputStepSize.Two: return 2.0; default: - throw new InvalidEnumArgumentException("stepSize", (int) stepSize, typeof(WaveConditionsInputStepSize)); + throw new InvalidEnumArgumentException("stepSize", (int)stepSize, typeof(WaveConditionsInputStepSize)); } } }