//-----------------------------------------------------------------------
//
// 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 NonExistentLocationException : Exception
{
public NonExistentLocationException()
{
}
public NonExistentLocationException(string locationId, string messageFormat)
: base(string.Format(messageFormat, locationId))
{
}
}
}