JAVA + try catch(FileNotFoundException e) going in catch(Exception e)?
It’s also possible that the specific issue you’re having isn’t a FileNotFoundException. By using the “Exception” in a catch block (which is the parent class to all Exceptions) this is effectively a “catch all”, since it will run if there is an `Exception or any of its subclasses thrown. Try the following change: This will … Read more