Suppose that statement3 throws an exception of type Exception3 in the following statement: try { statementl; statement2;
Posted: Fri May 20, 2022 6:27 pm
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