Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/DikeException.cs =================================================================== diff -u -r4000 -r4052 --- DamEngine/trunk/src/Deltares.DamEngine.Data/General/DikeException.cs (.../DikeException.cs) (revision 4000) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/DikeException.cs (.../DikeException.cs) (revision 4052) @@ -21,18 +21,17 @@ using System; -namespace Deltares.DamEngine.Data.General +namespace Deltares.DamEngine.Data.General; + +/// +/// Exception class for the Dike class +/// +/// +public class DikeException : Exception { /// - /// Exception class for the Dike class + /// Initializes a new instance of the class. /// - /// - public class DikeException : Exception - { - /// - /// Initializes a new instance of the class. - /// - /// The message that describes the error. - public DikeException(string message) : base(message) {} - } + /// The message that describes the error. + public DikeException(string message) : base(message) {} } \ No newline at end of file