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
FileSystemException may be the specific exception you are looking for.
FileSystemException
Although, a better idea for beginners is to catch an exception and print it using
System.out.println(e);
where e is the caught exception.
e