//----------------------------------------------------------------------- // // Copyright (c) 2010 Deltares. All rights reserved. // // B.S.T. The // tom.the@deltares.nl // 04-11-2010 // n.a. //----------------------------------------------------------------------- namespace Deltares.Dam.Data { using System; using System.Runtime.Serialization; [Serializable] public class ParameterMissingException : Exception { public ParameterMissingException(string messageFormat) : base(messageFormat, null) { } public ParameterMissingException(string messageFormat, Exception inner) : base(string.Format(messageFormat), inner) { } protected ParameterMissingException( SerializationInfo info, StreamingContext context) : base(info, context) { } } }