/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package test;

/**
 *
 * @author martin
 */
public class NewClass {

    public static void main(String[] args) {
        try {
            foo();
        } finally {
            System.out.println("Finally1"); //breakpoint on this line does not work
            System.out.println("Finally2"); //breakpoint on this line does not work
        }
    }

    private static void foo() {
        throw new UnsupportedOperationException("Not supported yet.");
    }
}
