It is never possible . Constructor Overriding is never possible in Java. This is because, Constructor looks like a method but name should be as class name and no return value.
Read moreCan we overload a constructor?
Constructors can be overloaded in a similar way as function overloading . Overloaded constructors have the same name (name of the class) but the different number of arguments. Depending upon the number and type of arguments passed, the corresponding constructor is called.
Read more