dotnet-installer/src/dotnet/HelpException.cs

16 lines
No EOL
420 B
C#

using System;
using Microsoft.DotNet.Cli.Utils;
namespace Microsoft.DotNet.Cli
{
///
/// <summary>Allows control flow to be interrupted in order to display help in the console.</summary>
///
public class HelpException : Exception
{
public HelpException(string message) : base(message)
{
Data.Add(ExceptionExtensions.CLI_User_Displayed_Exception, true);
}
}
}