mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-19 10:12:50 +08:00
15 lines
343 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |