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