Any subclass which extends a super class whose default constructor handles some exception, a subclass must have a default constructor which implements the exception
class Super{
public Super() throws Exception {}}
class Sub extends Super{public Sub()throws Exception{//}}