package starling.errors {
import openfl.errors.Error;
/**
 *  A NotSupportedError is thrown when you attempt to use a feature that is not supported
 *  *  on the current platform. 
 * @externs
 */
public class NotSupportedError extends openfl.errors.Error {
	/**
	 *  Creates a new NotSupportedError object. 
	 */
	public function NotSupportedError(message:String = undefined, id:int = undefined) {
		super(undefined, undefined);
	}
}
}
