in src/utils/abstractMethod.js [17:24]
function abstractMethod<T>(className: string, methodName: string): T {
invariant(
false,
'Subclasses of %s must override %s() with their own implementation.',
className,
methodName
);
}