package openfl.errors {
/**
 * 	A TypeError exception is thrown when the actual type of an operand is
 * 	different from the expected type.
 * 
 * @externs
 */
public class TypeError extends openfl.errors.Error {
	public function TypeError(message:String = undefined) {
		super(undefined, undefined);
	}
}
}
