MoonTools.Graph/Graph/NegativeCycleException.cs

26 lines
582 B
C#
Raw Normal View History

2019-10-24 03:49:16 +00:00
using System;
using System.Runtime.Serialization;
2020-02-21 02:43:25 +00:00
namespace MoonTools.Graph
2019-10-24 03:49:16 +00:00
{
[Serializable]
public class NegativeCycleException : Exception
{
public NegativeCycleException()
{
}
public NegativeCycleException(string message) : base(message)
{
}
public NegativeCycleException(string message, Exception innerException) : base(message, innerException)
{
}
protected NegativeCycleException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
2020-02-21 02:43:25 +00:00
}