Error C2512 no appropriate default constructor available

I got this error as well, except I wasn’t trying to create a new object. My solution was putting the following:

 : Super(ObjectInitializer)

after the constructor of a child class whose parent class constructor used FObjectInitializer as a parameter.