//-----------------------------------------------------------------------
//
// Copyright (c) 2009 Deltares. All rights reserved.
//
// B. Faassen
// barry.faassen@deltares.nl
// 22-6-2009
// n.a.
//-----------------------------------------------------------------------
namespace Deltares.Dam.Data
{
using System;
using System.Runtime.Serialization;
[Serializable]
public class SurfaceLineAdapterException : Exception
{
public SurfaceLineAdapterException()
{
}
public SurfaceLineAdapterException(string message)
: base(message)
{
}
public SurfaceLineAdapterException(string message, Exception inner)
: base(message, inner)
{
}
protected SurfaceLineAdapterException(
SerializationInfo info,
StreamingContext context)
: base(info, context)
{
}
}
}