ComponentNotInitializedException constructor
ComponentNotInitializedException({})
Creates an exception indicating the referenced component has not been initialized.
Implementation
ComponentNotInitializedException({
required super.component,
super.cause,
super.stack,
super.metadata,
super.isReportable,
}) : super(
userMessage: 'Application setup is incomplete.',
devMessage: '$component is not initialized.',
);