blob: bd66b6e038c106874c49e6f85976c3737cbb1d73 [file] [log] [blame]
package p;
import java.io.IOException;
public class Foo {
public static void foo() throws IOException, ArrayIndexOutOfBoundsException {
}
/**
* @throws IOException
* @throws ArrayIndexOutOfBoundsException
*/
public static void bar() throws IOException, ArrayIndexOutOfBoundsException {
Foo.foo();
}
void foo2() throws Exception {
Foo.bar(); // <- invoke here
}
}