Index: dam engine/trunk/src/Deltares.DamEngine.Interface/InterfaceException.cs
===================================================================
diff -u -r312 -r343
--- dam engine/trunk/src/Deltares.DamEngine.Interface/InterfaceException.cs (.../InterfaceException.cs) (revision 312)
+++ dam engine/trunk/src/Deltares.DamEngine.Interface/InterfaceException.cs (.../InterfaceException.cs) (revision 343)
@@ -1,13 +1,17 @@
using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
namespace Deltares.DamEngine.Interface
{
+ ///
+ /// Excpetion class for the Interface
+ ///
+ ///
public class InterfaceException: Exception
{
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The message that describes the error.
public InterfaceException(string message) : base(message) { }
}
}