|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.DotNet.Cli.Utils.Extensions;
namespace Microsoft.DotNet.Cli.Utils;
public class GracefulException : Exception
{
public bool IsUserError { get; } = true;
public string VerboseMessage { get; } = string.Empty;
public GracefulException()
{
}
public GracefulException(string message) : base(message)
{
Data.Add(ExceptionExtensions.CLI_User_Displayed_Exception, true);
}
public GracefulException(IEnumerable<string> messages, IEnumerable<string>? verboseMessages = null,
bool isUserError = true)
: this(string.Join(Environment.NewLine, messages), isUserError: isUserError)
{
if (verboseMessages != null)
{
VerboseMessage = string.Join(Environment.NewLine, verboseMessages);
}
}
public GracefulException(string format, params string[] args) : this(string.Format(format, args))
{
}
public GracefulException(string message, Exception? innerException = null, bool isUserError = true) : base(message, innerException)
{
IsUserError = isUserError;
Data.Add(ExceptionExtensions.CLI_User_Displayed_Exception, isUserError);
}
}
|