SeyfertPluginAggregateError

Signature

export declare class SeyfertPluginAggregateError extends SeyfertError

Properties

name: string;

Error name used in logs and stack traces.

Methods

constructorConstructor
constructor(code: SeyfertPluginErrorCode, plugin: string, phase: string, index: number, errors: Iterable<unknown>, message?: string, cause?: unknown, instanceId?: string);
toJSON(): {    name: string;    message: string;    code: SeyfertErrorCode;    metadata: Record<string, unknown> | undefined;    cause: unknown;    errors: unknown[];};

Serializes the error into a plain object.

Returns

Serializable error payload including name, message, code, metadata and cause.