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
just catch the excpetion it may throw and do nothing with it; eat it as people say :) But at least log it!
Very concise example:
try { your code... } catch (Exception e) { log here }