namespace Spectre.Console { /// /// Exception settings. /// public sealed class ExceptionSettings { /// /// Gets or sets the exception format. /// public ExceptionFormats Format { get; set; } /// /// Gets or sets the exception style. /// public ExceptionStyle Style { get; set; } /// /// Initializes a new instance of the class. /// public ExceptionSettings() { Format = ExceptionFormats.Default; Style = new ExceptionStyle(); } } }