If I have a class:
class A { public A() { } }
and another
class B extends A { public B() { } }
is t
If you don't want to call the superclass constructor, there is something else wrong with your object model.