BEGIN . . . BEGIN IF X=1 THEN RAISE A: ELSEIF X=2 THEN RAISE B; ELSE RAISE C; EXCEPTION WHEN A THEN . . . END; EXCEPTION WHEN B THEN . . . END; Whar will happen to exception B
The exception B will be handled in inner block
The exception B will be handled in outer block exception handler
The exception will not be handled as there is no handler defined for B in inner block
The exception section in inner block is executed and also Outer block exception section as we have defined there too