FormulaError
Represents an error that occurred during formula evaluation.
The name property is a string that identifies the type of error, and the code property is a
numeric code that can be used for more specific error handling. The class also includes a
detail property that can hold additional information about the error.
Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”new FormulaError(name: string, code?: number): FormulaError;Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
name | string |
code? | number |
Returns
Section titled “Returns”FormulaError
Properties
Section titled “Properties”| Property | Type |
|---|---|
code | number |
detail? | string |
name | string |
Methods
Section titled “Methods”toString()
Section titled “toString()”toString(): string;Returns
Section titled “Returns”string
valueOf()
Section titled “valueOf()”valueOf(): string;Returns
Section titled “Returns”string