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