Question: Exercise 1 4 . 3 1 Why is the following not a sensible way to use an exception handler? Will this code compile and run?

Exercise14.31
Why is the following not a sensible way to use an exception handler? Will this code compile and run?
Person p = null;
try {
// The lookup could fail.
p = database.lookup(details);
}
catch(Exception e){
}
System.out.println("The details belong to: "+ p);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!