Im sure this is not the proper way to suggest a new feature but how about improved Exception handling.
try {
// some code here
}
catch(FileNotFoundException, IOException e) {
// handle either exception here
}
catch(Exception e) {
// handle any other exception here
} |