jangaroo-runtime.2.0.19.source-code.EvalError.as Maven / Gradle / Ivy
package {
/**
* The EvalError class represents an error that occurs when user code calls the eval()
function or attempts to use the new
operator with the Function object. Calling eval()
and calling new
with the Function object are not supported.
* @see http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7ed2.html Error handling in ActionScript 3.0
* @see http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7ecf.html Responding to error events and status
*
*/
[Native]
public dynamic class EvalError extends Error {
/**
* Creates a new EvalError object.
* @param message A string associated with the error.
*
* @see http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7ed2.html Error handling in ActionScript 3.0
* @see http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7ecf.html Responding to error events and status
*
*/
public function EvalError(message:String = "") {
super(message);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy