Index: Ringtoets/Common/src/Ringtoets.Common.Utils/AssignUnassignCalculations.cs =================================================================== diff -u -r6f46ce9a263e50bca4ff0cb32973f330defd6f3b -re60dbf2fd41434270cad4efba20446e19ede0d2e --- Ringtoets/Common/src/Ringtoets.Common.Utils/AssignUnassignCalculations.cs (.../AssignUnassignCalculations.cs) (revision 6f46ce9a263e50bca4ff0cb32973f330defd6f3b) +++ Ringtoets/Common/src/Ringtoets.Common.Utils/AssignUnassignCalculations.cs (.../AssignUnassignCalculations.cs) (revision e60dbf2fd41434270cad4efba20446e19ede0d2e) @@ -225,7 +225,7 @@ } if (sections.Any(s => s == null)) { - throw new ArgumentException("Sections contains an entry without value.", "sections"); + throw new ArgumentException(@"Sections contains an entry without value.", "sections"); } } @@ -253,7 +253,7 @@ } if (calculations.Any(s => s == null)) { - throw new ArgumentException("Calculations contains an entry without value.", "calculations"); + throw new ArgumentException(@"Calculations contains an entry without value.", "calculations"); } } @@ -265,7 +265,7 @@ } if (sectionResults.Any(s => s == null)) { - throw new ArgumentException("SectionResults contains an entry without value.", "sectionResults"); + throw new ArgumentException(@"SectionResults contains an entry without value.", "sectionResults"); } }