public CommandNotInitializedException(CommandBase command, string argument) : base(command) { Argument = argument; }
public CommandNotInitializedException(string message, Exception innerException, CommandBase command, string argument) : base(message, innerException, command) { Argument = argument; }