Take a look at the following piece of code:
try {
// it throws an exception
} catch (RuntimeException e) {
// ...
} catch (IOException e) {
// ...
} catch (Exception e) {
// ...
} finally {
// ...
}
Let's assume in the try block the java.lang.NumberFormatException is thrown at runtime.
Select all blocks that will be executed.