spectre.console/src/Spectre.Console/Widgets/CircularTreeException.cs
2021-01-14 18:37:22 +01:00

15 lines
343 B
C#

using System;
namespace Spectre.Console
{
/// <summary>
/// Indicates that the tree being rendered includes a cycle, and cannot be rendered.
/// </summary>
public sealed class CircularTreeException : Exception
{
internal CircularTreeException(string message)
: base(message)
{
}
}
}