Index: Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresFailureMechanismSectionResult.cs =================================================================== diff -u -r5e1c552bd6b82241abc970ef95c55b2b1c9169ec -rb6e0f8d41d92ed18c902138dd49cce6e703ee883 --- Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresFailureMechanismSectionResult.cs (.../StructuresFailureMechanismSectionResult.cs) (revision 5e1c552bd6b82241abc970ef95c55b2b1c9169ec) +++ Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresFailureMechanismSectionResult.cs (.../StructuresFailureMechanismSectionResult.cs) (revision b6e0f8d41d92ed18c902138dd49cce6e703ee883) @@ -20,7 +20,9 @@ // All rights reserved. using System; +using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; +using Ringtoets.Common.Data.Probability; namespace Ringtoets.Common.Data.Structures { @@ -44,5 +46,11 @@ /// to be representative for the whole section. /// public StructuresCalculation Calculation { get; set; } + + protected override RoundedDouble ValidateAssessmentLayerThree(RoundedDouble value) + { + ProbabilityHelper.ValidateProbability(value, null, true); + return value; + } } } \ No newline at end of file