public ParameterCountException(string rawCommand, CommandReference commandReference) : base(rawCommand, "Count of parameters does not match the required amount") { CommandReference = commandReference; }
public HelpRequestedException(string rawCommand, List <string> availableKeys, CommandReference commandReference) : base(rawCommand, "Help for command") { AvailableKeys = availableKeys; CommandReference = commandReference; }