Rules on Overriding
Return type and arguments must match.
Sub class version must not be less visible.
final disregarded in matching arguments.
Checked exceptions in sub class must be compatible with those in super class.
- Sub class version may throw none.