Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/DikesDesign/SurfaceLineAdapterException.cs =================================================================== diff -u -r4000 -r4052 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators/DikesDesign/SurfaceLineAdapterException.cs (.../SurfaceLineAdapterException.cs) (revision 4000) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/DikesDesign/SurfaceLineAdapterException.cs (.../SurfaceLineAdapterException.cs) (revision 4052) @@ -21,24 +21,23 @@ using System; -namespace Deltares.DamEngine.Calculators.DikesDesign +namespace Deltares.DamEngine.Calculators.DikesDesign; + +/// +/// Exception class for the SurfaceLineAdapter classes +/// +/// +[Serializable] +public class SurfaceLineAdapterException : Exception { /// - /// Exception class for the SurfaceLineAdapter classes + /// Initializes a new instance of the class. /// - /// - [Serializable] - public class SurfaceLineAdapterException : Exception - { - /// - /// Initializes a new instance of the class. - /// - public SurfaceLineAdapterException() {} + public SurfaceLineAdapterException() {} - /// - /// Initializes a new instance of the class. - /// - /// The message that describes the error. - public SurfaceLineAdapterException(string message) : base(message) {} - } + /// + /// Initializes a new instance of the class. + /// + /// The message that describes the error. + public SurfaceLineAdapterException(string message) : base(message) {} } \ No newline at end of file