For the complete documentation index, see llms.txt. This page is also available as Markdown.

get errors()

The get accessor returns the errors of Map type

CommonErrors.prototype.errors()

The get accessor returns the errors of Map type by returning the #errors property of a specified object.

common-errors.class.ts
protected get errors(): Map<Id, any> {
  return this.#errors;
}

Return type

Map<Id,any>

Returns

The return value is the Map object of errors.

Last updated