In the following case, pressing Ctrl-Shift-F7 on the 'throws' keyword fails to find/highlight the "throw e" statement.
class ThrowTest {
void foo() throws InterruptedException {
try {
Thread.sleep(0);
} catch (InterruptedException e) {
throw e;
}
}
}