Rename CommandErrorException to CommandException

This commit is contained in:
Alexey Golub
2019-08-17 16:31:28 +03:00
parent 87688ec29e
commit 2d8b0b4c88
10 changed files with 55 additions and 67 deletions

View File

@@ -26,7 +26,7 @@ namespace CliFx.Tests
[Command("faulty command")]
private class TestFaultyCommand : ICommand
{
public Task ExecuteAsync(IConsole console) => Task.FromException(new CommandErrorException(-1337));
public Task ExecuteAsync(IConsole console) => Task.FromException(new CommandException(-1337));
}
}