dotnet-installer/src/Microsoft.DotNet.Cli.Utils/CommandUnknownException.cs
2016-04-12 16:44:34 -07:00

19 lines
No EOL
526 B
C#

using System;
namespace Microsoft.DotNet.Cli.Utils
{
public class CommandUnknownException : GracefulException
{
public CommandUnknownException()
{
}
public CommandUnknownException(string commandName) : base($"No executable found matching command \"{commandName}\"")
{
}
public CommandUnknownException(string commandName, Exception innerException) : base($"No executable found matching command \"{commandName}\"", innerException)
{
}
}
}