using System; using System.Runtime.Serialization; namespace Deltares.Dam.Data.Sensors { [Serializable] public class SensorPLLineCreatorException : Exception { public SensorPLLineCreatorException() { } public SensorPLLineCreatorException(string message) : base(message) { } public SensorPLLineCreatorException(string message, Exception inner) : base(message, inner) { } protected SensorPLLineCreatorException( SerializationInfo info, StreamingContext context) : base(info, context) { } } }