★ Constructor
The `Error` object constructor
Error()
Error()constructor(
problem: string,
fix: string,
id?: Id,
template = Error.template
) {
super(problem, fix, id, template);
}Parameters
problem:string
problem:stringfix:string
fix:stringid?:Id
id?:IdExample usage
Last updated