In Java I have a method catching an exception \'ChildException\' that extends \'NewException\'. If that method calls another method that throws a \'NewException\' and let\'s
It will only catch the Exception you specify or it's subclass. Just write it so it catches the parent Exception and you're safe.