package starling.errors {
import openfl.errors.Error;
/**
 *  A MissingContextError is thrown when a Context3D object is required but not (yet) 
 *  *  available. 
 * @externs
 */
public class MissingContextError extends openfl.errors.Error {
	/**
	 *  Creates a new MissingContextError object. 
	 */
	public function MissingContextError(message:String = undefined, id:int = undefined) {
		super(undefined, undefined);
	}
}
}
