public void Execute(params string[] parameters) { try { if (parameters.Length < 1) { throw new ArgumentException("Отсуствует аргумент"); } picture.Group(parameters); CommandHistoryContainer.GetInstance().OnEdit(); } catch (ArgumentException e) { Console.WriteLine(e.Message); } }