mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 17:02:51 +08:00
12 lines
286 B
C#
12 lines
286 B
C#
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)
|
|
{
|
|
}
|
|
} |