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