Exceptions and overriding

Method overriding has certain rules for exceptions. Let’s see what those are. For quick look, you may refer the below table Note -> Child class’ overridden method can narrow down the exception from parent class’ method. But it cannot widen the same. Scenario Parent Class Child Class 1. Parent’s method doesn’t throw any exception -> … Continue reading Exceptions and overriding