All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jangaroo-runtime.2.0.19.source-code.SyntaxError.as Maven / Gradle / Ivy

There is a newer version: 4.1.8
Show newest version
package {

/**
 * A SyntaxError exception is thrown when a parsing error occurs, for one of the following reasons:.
 * 
    *
  • An invalid regular expression is parsed by the RegExp class.
  • *
  • Invalid XML content is parsed by the XML class.
* @see RegExp * @see XML * @see http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7ecf.html Responding to error events and status * */ [Native] public dynamic class SyntaxError extends Error { /** * Creates a new SyntaxError object. * @param message Contains the message associated with the SyntaxError object. * * @see http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7ecf.html Responding to error events and status * */ public function SyntaxError(message:String = "") { super(message); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy