Handling FileNotFoundException

Change line 1 to

from java.io import FileNotFoundException

And the except line to

except FileNotFoundException,e:

Importing classes is slooooww. Only import what you need.

2 Likes