mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-07-01 02:28:14 +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)
|
|
{
|
|
}
|
|
} |