CS3 JS: Error

CS3 JavaScript

Error

 Wraps a runtime error.

QuickLinks

Error, toSource, toString

Properties

PropertyTypeAccessDescription
descriptionstringr/wThe error message.

Methods

Error Error (msg:string, file:string, line:number)
Creates a new Error object.

ParameterTypeDescription
msgstringThe error message.
filestringThe name of the file.
linenumberThe line number.

string toSource ()
Creates a string representation of this object that can be fed back to eval() to re-create an object. Works only with built-in classes.

string toString ()
Convert this object to a string.

Element of

$.error

Return

Error Error.Error (msg:string, file:string, line:number)

Contents :: Index