Исключения

Обработка исключений

1/5

Дано:

public class Test {
    public static void main(String[] args) {
        try {
            throw new RuntimeException();
        }
        System.out.print("Between try and catch ");
        catch(RuntimeException e){
            System.out.print("In the catch block ");
        }finally{
            System.out.print("In the finally block ");
        }
    }
}

Каков результат?

Comments