I have a bunch of inheritent classes that have error checking. If the base class checks for the common stuff, does the child class automatically call that constructor, or would I have to type it in? So if I had a base class check of negative numbers and the child class can't have any negative or odd numbers, how could I get the Child() constuctor to use the Base() constructor so I don't have to type the code out again?
