6.5.2.Be careful to recognize when a method is overloaded rather than overridden.
import java.io.IOException;
class Foo { public void doStuff(int y, String s) { } public void moreThings(int x) { }
} class Bar extends Foo { public void doStuff(int y, long s) throws IOException { }
}