Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/Placeholders/FailureMechanismPlaceholder.cs =================================================================== diff -u -rf5e1194ee412e86277cee388a75c39db189f2b3e -r13fcf9943a26918929a3ada0363c2414480db077 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/Placeholders/FailureMechanismPlaceholder.cs (.../FailureMechanismPlaceholder.cs) (revision f5e1194ee412e86277cee388a75c39db189f2b3e) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/Placeholders/FailureMechanismPlaceholder.cs (.../FailureMechanismPlaceholder.cs) (revision 13fcf9943a26918929a3ada0363c2414480db077) @@ -19,6 +19,7 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using System.Collections.Generic; using Ringtoets.Common.Data.Calculation; using Ringtoets.Common.Data.FailureMechanism; @@ -35,9 +36,16 @@ /// /// Initializes a new instance of the class. /// - /// The placeholder's name. - public FailureMechanismPlaceholder(string name) - : base(name, string.Empty) + /// The name for the placeholder. + /// The code for the placeholder. + /// Thrown when either: + /// + /// is null or empty. + /// is null or empty. + /// + /// + public FailureMechanismPlaceholder(string name, string code) + : base(name, code) { Locations = new InputPlaceholder(RingtoetsCommonDataResources.FailureMechanism_Locations_DisplayName); BoundaryConditions = new InputPlaceholder(RingtoetsCommonDataResources.FailureMechanism_BoundaryConditions_DisplayName);