//-----------------------------------------------------------------------
//
// 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.Collections.Generic;
using System.Text;
[global::System.Serializable]
public class StabilityServiceAgentException : Exception
{
///
/// TODO: Set a default error message
///
public StabilityServiceAgentException() : this("There was an error") { }
public StabilityServiceAgentException(string message) : base(message) { }
public StabilityServiceAgentException(string message, Exception inner) : base(message, inner) { }
protected StabilityServiceAgentException(
System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context)
: base(info, context) { }
}
}