package openfl.errors {
/**
 * 	Permission error is dispatched when the application tries to access a
 * 	resource without requesting appropriate permissions.
 * 
 * @externs
 */
public class PermissionError extends openfl.errors.Error {
	/**
	 * 		Creates a new instance of the PermissionError class.
	 * 
	 * 		@param message The error description
	 * 		@param id The general error number
	 * 	
	 */
	public function PermissionError(message:String = undefined, id:int = undefined) {
		super(undefined, undefined);
	}
}
}
