namespace Spectre.Console;
///
/// Represents how an exception is formatted.
///
[Flags]
public enum ExceptionFormats
{
///
/// The default formatting.
///
Default = 0,
///
/// Whether or not paths should be shortened.
///
ShortenPaths = 1,
///
/// Whether or not types should be shortened.
///
ShortenTypes = 2,
///
/// Whether or not methods should be shortened.
///
ShortenMethods = 4,
///
/// Whether or not to show paths as links in the terminal.
///
ShowLinks = 8,
///
/// Shortens everything that can be shortened.
///
ShortenEverything = ShortenMethods | ShortenTypes | ShortenPaths,
}