In the superclass I have:
abstract someMethod() throws someException;
In the subclass I have:
someMethod(){/*do something*/}
Is it ok to do this without a throws someException
declaration? Is it that the throws someException
declaration is there by default without adding it explicitly?