Accessors

The `CommonError` object accessors

public get fix(): string The get accessor obtains a possible solution to the described problem by returning the #fix property of a specified object

public get id(): Id | undefined The get accessor gets the error identification by returning the #id property of a specified object.

public get link(): string | undefined The get accessor gets the link(to read more about the thrown error) by returning the #link property of a specified object.

public get message(): string The get accessor gets the error message by returning the parent message property of the Error object.

public get problem(): string The get accessor gets the problem by returning the #problem property of a specified object.

public get template(): string The get accessor gets the template of the error message by returning the #template property of a specified object.

Last updated