The code attempted to pass a property of the current class to the base class constructor. This is not allowed because the properties of the current class do not exist until after the base class is constructed.
To correct this error
-
Make sure no properties of the class that is being constructed are passed to the base class constructor.