package openfl.errors {
/**
 * 	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.
 * 
 * @externs
 */
public class ArgumentError extends openfl.errors.Error {
	/**
	 * 		Creates an ArgumentError object.
	 * 	
	 */
	public function ArgumentError(message:String = undefined) {
		super(undefined, undefined);
	}
}
}
