using System; namespace Deltares.DamEngine.Interface { /// /// Excpetion class for the Interface /// /// public class EngineInterfaceException: Exception { /// /// Initializes a new instance of the class. /// /// The message that describes the error. public EngineInterfaceException(string message) : base(message) { } } }