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