//-----------------------------------------------------------------------
//
// Copyright (c) 2010 Deltares. All rights reserved.
//
// B.S.T.I.M. The
// tom.the@deltares.nl
// 18-05-2010
// Object representing a generic line
//-----------------------------------------------------------------------
using Deltares.Geometry;
namespace Deltares.Dam.Data
{
using System;
using System.Collections.Generic;
using System.Linq;
using Deltares.Standard;
public class GenericLineException : Exception
{
public GenericLineException(string message) : base(message)
{
}
}
public class GenericLine : PolyLine
{
public GenericLine()
: base()
{
}
}
}