package starling.errors {
import openfl.errors.Error;
/**
 *  An AbstractMethodError is thrown when you attempt to call an abstract method. 
 * @externs
 */
public class AbstractMethodError extends openfl.errors.Error {
	/**
	 *  Creates a new AbstractMethodError object. 
	 */
	public function AbstractMethodError(message:String = undefined, id:int = undefined) {
		super(undefined, undefined);
	}
}
}
