Base Constructor Failure
If a base-class constructor throws an exception, construction of the derived object does not complete successfully. The derived constructor body is not reached because the base portion of the object must be initialized before the derived portion. The runtime propagates the exception according to the language's exception rules. From a design perspective, constructors should validate required state and establish invariants, but they should generally avoid complex external operations that can make object creation unpredictable.
Base construction occurs before derived construction.
If base construction fails, derived construction does not complete.
The derived constructor body is not executed after a failed base construction.
The object is not returned as a successfully constructed instance.
Constructor failures should leave no usable partially initialized object exposed.