package command; import exception.CrawlerException; public interface Command { void execute() throws CrawlerException; String getName(); String getDescription(); }