class ChangeSignatureTest { void foo() throws Exception { } void bar() throws Exception { foo(); } { try { bar(); } catch (Exception e) { e.printStackTrace(); } } }