AvailabilityJavaScript 1.5; JScript 5.5; ECMAScript v3 Inherits from/OverridesInherits from Error Constructornew EvalError( ) new EvalError(message) Arguments
ReturnsA newly constructed EvalError object. If the message argument is specified, the Error object will use it as the value of its message property; otherwise, it will use an implementation-defined default string as the value of that property. When the EvalError( ) constructor is called as a function, without the new operator, it behaves just as it does when called with the new operator. Properties
DescriptionAn instance of the EvalError class may be thrown when the global function eval( ) is invoked under any other name. See eval( ) for an explanation of the restrictions on how this function may be invoked. See Error for details about throwing and catching exceptions. See AlsoError, Error.message, Error.name |