[Oracle interview]How does a try statement determine which catch clause should be used to handle an exception?
When anexception is thrown within the body of a try statement, the catch clauses ofthe try statement are examined in the order in which they appear. The firstcatch clause that is capable of handling the exceptionis executed. Theremaining catch clauses are ignored.
页:
[1]