package talkcrawler; public class TalkCrawler { @SuppressWarnings({"UseSpecificCatch", "CallToPrintStackTrace"}) public static void main(String[] args) { try { TalkCrawlerProperties prop = new TalkCrawlerProperties().load(); MonthlyIndex ins = new MonthlyIndex(prop); ins.load(); } catch (Exception e) { e.printStackTrace(); } } }