Skip to content

BuilderError

Captures an error produced during buildStaticStore().

export type BuilderError = {
name: string;
error?: unknown;
message: () => string;
};

Errors

BuilderUnexpectedError

An unexpected error occurred while building the store.

BuilderOptionsError

The BuilderOptions, either provided to createBuilderContext() or expressed in the dd.config.mjs configuration file, are invalid.

BuilderSourceError

One of the DecisionSource or SchemaSource, provided to createBuilderContext() or expressed in the dd.config.mjs configuration file, is invalid.

See also