jangaroo-runtime.2.0.19.source-code.ArgumentError.as Maven / Gradle / Ivy
package {
/**
* The ArgumentError class represents an error that occurs when the arguments supplied in a function do not match the arguments defined for that function. This error occurs, for example, when a function is called with the wrong number of arguments, an argument of the incorrect type, or an invalid argument.
*
* @see http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7ecf.html Responding to error events and status
*
*/
public dynamic class ArgumentError extends Error {
/**
* Creates an ArgumentError object.
* @param message A string associated with the error.
*
*/
public function ArgumentError(message:String = "") {
super(message);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy