01: package org.netbeans.test.java.hints;
02:
03: import java.io.FileReader;
04:
05: public class TestBug123850c extends Fire4 implements Fire3 {
06: public void run() {
07: new FileReader("foo");
08: }
09: }
10:
11: interface Fire3 {
12: public void run() throws java.io.IOException;
13: }
14:
15: abstract class Fire4 {
16: public abstract void run() throws java.beans.PropertyVetoException;
17: }
|