//-----------------------------------------------------------------------
//
// 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 EntityFactoryException : Exception
{
public EntityFactoryException()
{
}
public EntityFactoryException(string message)
: base(message)
{
}
public EntityFactoryException(string message, Exception inner)
: base(message, inner)
{
}
protected EntityFactoryException(
SerializationInfo info,
StreamingContext context)
: base(info, context)
{
}
}
}