Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs =================================================================== diff -u -rce94b8228bc7e51779b3754217580f13cb35e475 -r6a35b370e2b97f2ce1ba0092c59905913a49dde0 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs (.../HeightStructuresInput.cs) (revision ce94b8228bc7e51779b3754217580f13cb35e475) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs (.../HeightStructuresInput.cs) (revision 6a35b370e2b97f2ce1ba0092c59905913a49dde0) @@ -26,6 +26,7 @@ using Ringtoets.Common.Data.Probabilistics; using Ringtoets.HeightStructures.Data.Properties; using Ringtoets.HydraRing.Data; +using RingtoetsCommonDataResources = Ringtoets.Common.Data.Properties.Resources; namespace Ringtoets.HeightStructures.Data { @@ -273,7 +274,7 @@ { if (value < 0 || value > 1) { - throw new ArgumentException(Resources.FailureProbabilityOfStructureGivenErosion_Value_needs_to_be_between_0_and_1); + throw new ArgumentException(RingtoetsCommonDataResources.FailureProbability_Value_needs_to_be_between_0_and_1); } failureProbabilityOfStructureGivenErosion = value; }