using System; using System.Runtime.Serialization; namespace Deltares.DamEngine.Calculators.PlLinesCreator { /// /// Exception class for Creator for Piezometric level lines /// /// [Serializable] public class PlLinesCreatorException : Exception { public PlLinesCreatorException() { } public PlLinesCreatorException(string message) : base(message) { } public PlLinesCreatorException(string message, Exception inner) : base(message, inner) { } protected PlLinesCreatorException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }