44.7k views
0 votes
The term "exception propagation" means:

a) an exception is caught by the first catch clause

b) an exception not caught by the first catch clause is caught by an outer (enclosing) catch clause

c) exceptions are caught, sequentially, by catch clauses in the current try block

d) exceptions always are caught by the outermost try block

e) none of the above

User Spatara
by
8.4k points

1 Answer

2 votes

Answer:

B

Step-by-step explanation:

Exceptions are caught from inner catch block to the outer catch. If an exception is thrown inside a method and it is not catches by that catch block then the calling method's catch block /outer catch block will catch that

The Answer is B

User Mrogers
by
8.2k points