//-----------------------------------------------------------------------
//
// Copyright (c) 2010 Deltares. All rights reserved.
//
// B.S.T.I.M. The
// tom.the@deltares.nl
// 05-10-2010
// Exception for CsvExporter
//-----------------------------------------------------------------------
namespace Deltares.Dam.Data
{
using System;
using System.Runtime.Serialization;
[Serializable]
public class CsvExporterException : Exception
{
public CsvExporterException()
{
}
public CsvExporterException(string message) : base(message)
{
}
public CsvExporterException(string message, Exception inner) : base(message, inner)
{
}
protected CsvExporterException(
SerializationInfo info,
StreamingContext context) : base(info, context)
{
}
}
}