Suppose that statement3 throws an exception of type Exception3 in the following statement: try { statementl; statement2;
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Suppose that statement3 throws an exception of type Exception3 in the following statement: try { statementl; statement2;
statement: try { statementl; statement2; statement3; } catch (Exception1 ex1) { } catch (Exception2 ex2) { } catch (Exception3 ex3) { Statement4; throw; } statements; Which statements are executed after statement3 is executed? a. statement1 b. statement4 c. statements d. statement2 e. statement3
Suppose that statement3 throws an exception of type Exception3 in the following