Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresContext.cs =================================================================== diff -u -rce31448a066c084f755439f3e7d453bfb042b291 -rd689ea05c1014eb4d51b927e11eb6c48255f0a47 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresContext.cs (.../HeightStructuresContext.cs) (revision ce31448a066c084f755439f3e7d453bfb042b291) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructuresContext.cs (.../HeightStructuresContext.cs) (revision d689ea05c1014eb4d51b927e11eb6c48255f0a47) @@ -28,6 +28,7 @@ using Ringtoets.HeightStructures.Data; using Ringtoets.HeightStructures.Forms.Properties; using Ringtoets.HydraRing.Data; +using RingtoetsCommonFormsResources = Ringtoets.Common.Forms.Properties.Resources; namespace Ringtoets.HeightStructures.Forms.PresentationObjects { @@ -52,16 +53,16 @@ { if (failureMechanism == null) { - var message = string.Format(Resources.HeightStructuresContext_AssertInputsAreNotNull_DataDescription_0_cannot_be_null, + var message = string.Format(RingtoetsCommonFormsResources.AssertInputsAreNotNull_DataDescription_0_cannot_be_null, Resources.HeightStructuresContext_DataDescription_HeightStructuresFailureMechanism); throw new ArgumentNullException("failureMechanism", message); } if (assessmentSection == null) { - var message = string.Format(Resources.HeightStructuresContext_AssertInputsAreNotNull_DataDescription_0_cannot_be_null, - Resources.HeightStructuresContext_DataDescription_AssessmentSection); + var message = string.Format(RingtoetsCommonFormsResources.AssertInputsAreNotNull_DataDescription_0_cannot_be_null, + RingtoetsCommonFormsResources.FailureMechanismContext_DataDescription_AssessmentSection); throw new ArgumentNullException("assessmentSection", message); }