NativeErrorType
Overview
The NativeErrorType enumeration represents exact type of an error occurred when the Script was performing an action over an object mapped to the .NET type (either provided as method parameter or instantiated during the Script execution).
Location
- Reference: RemObjects.Script.dll
- Namespace: RemObjects.Script.EcmaScript
Value | Description |
---|---|
EvalError | Stack overflow |
RangeError | Index was out of range while accessing an array element. An attempt to operate with numbers with radix greater than 36. |
ReferenceError | An attempt to perform an operation over the .NET object that is not yet instantiated. |
SyntaxError | Syntax error in the script |
TypeError | An attempt to perform an operation over the object that is yet possible (f.e. to execute method that is not defined in the object or to set a value of a readonly property). |
URIError | Provided value is not a valid Uri (f.e. in the encodeURI JavaScript function call). |