How do I use exceptions and exception handling to make my program continue even if an exception occurs while processing certain files in a set of files?
I want my pr
for(File f : files){ try { process(f); // may throw various exceptions } catch (Exception e) { logger.error(e.getMessage(), e); } }