@ng-doc/builder / Class

BuilderError

Represents an error state in the builder process. This class is used when the builder has encountered an error.

Constructor

Creates a new instance of the BuilderError class.

Presentation
constructor(
	readonly tag: string, 
	readonly error: Error[]
): BuilderError;
Parameters
NameTypeDescription
r
tag
string

@param tag

r
error
Error[]

@param {Error[]} error The errors encountered during the builder process.

Properties

NameTypeDescription
state
r
"error"