import java.io.IOException; class Base { public Base() throws IOException { } } class AAA extends Base { public AAA() { super(); } }