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

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

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

/**
 * The SecurityError exception is thrown when some type of security violation takes place.
 * 

Examples of security errors:

*
    *
  • An unauthorized property access or method call is made across a security sandbox boundary.
  • *
  • An attempt was made to access a URL not permitted by the security sandbox.
  • *
  • A socket connection was attempted to an unauthorized port number, e.g. a port above 65535.
  • *
  • An attempt was made to access the user's camera or microphone, and the request to access the device was denied by the user.
*

View the examples

* @see http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7ecf.html Responding to error events and status * */ public dynamic class SecurityError extends Error { /** * Creates a new SecurityError object. * @param message A string associated with the error. */ public function SecurityError(message:String = "") { super(message); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy