public class test{ public test() throws Exception { throw new Exception("Fail"); } public static void main (String[] args) { try { System.out.println( "Start"); new test(); System.out.println ("Stop"); } catch (Exception e) { System.out.println(e.getMessage()); } finally { System.out.println ("Final"); } }}