import java.io.*; //////////// class x { void f() { try { int i = 0; } catch (IOException e) { } } } ////////////////// class A { private void a() { } } class B extends A { void a() throws InterruptedException { } void b() { try { a(); } catch (InterruptedException e) { // IDEA-207296 } } }