using System; namespace Deltares.DamEngine.Calculators.Uplift { /// /// Exception for UpliftLocationDeterminator class /// public class UpliftLocationDeterminatorException : ApplicationException { // // For guidelines regarding the creation of new exception types, see // http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconerrorraisinghandlingguidelines.asp // and // http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp07192001.asp // public UpliftLocationDeterminatorException() { } public UpliftLocationDeterminatorException(string message) : base(message) { } } }