blob: 89264fb4508a3f2b85397ac8290f4016a4050907 [file] [log] [blame]
package p;
import java.io.IOException;
public class ClassWithException {
// no error here
public void p() {
thrower();
}
public void thrower() throws IOException {
throw new IOException();
}
public void thrower2() throws IOException {
throw new IOException();
}
}