You can throw multiple exceptions from one method, like so:
public void fooBar throws TooFooeyException, NotFooeyException
{

}
which is what the compiler wants you to do, because the base class...