public static void DidFailToReceiveAd (this IGADBannerViewDelegate This, GADBannerView view, GADRequestError error)
		{
			if (view == null)
				throw new ArgumentNullException ("view");
			if (error == null)
				throw new ArgumentNullException ("error");
			MonoTouch.ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (This.Handle, Selector.GetHandle ("adView:didFailToReceiveAdWithError:"), view.Handle, error.Handle);
		}
		public static void DidFailToReceiveAd (this IGADInterstitialDelegate This, GADInterstitial sender, GADRequestError error)
		{
			if (sender == null)
				throw new ArgumentNullException ("sender");
			if (error == null)
				throw new ArgumentNullException ("error");
			MonoTouch.ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr (This.Handle, Selector.GetHandle ("interstitial:didFailToReceiveAdWithError:"), sender.Handle, error.Handle);
		}
 public static void DidFailToReceiveAd(this IGADBannerViewDelegate This, GADBannerView view, GADRequestError error)
 {
     if (view == null)
     {
         throw new ArgumentNullException("view");
     }
     if (error == null)
     {
         throw new ArgumentNullException("error");
     }
     MonoTouch.ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr(This.Handle, Selector.GetHandle("adView:didFailToReceiveAdWithError:"), view.Handle, error.Handle);
 }
 public virtual void DidFailToReceiveAd(GADBannerView view, GADRequestError error)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
		public virtual void DidFailToReceiveAd (GADBannerView view, GADRequestError error)
		{
			throw new You_Should_Not_Call_base_In_This_Method ();
		}
 public static void DidFailToReceiveAd(this IGADInterstitialDelegate This, GADInterstitial sender, GADRequestError error)
 {
     if (sender == null)
     {
         throw new ArgumentNullException("sender");
     }
     if (error == null)
     {
         throw new ArgumentNullException("error");
     }
     MonoTouch.ObjCRuntime.Messaging.void_objc_msgSend_IntPtr_IntPtr(This.Handle, Selector.GetHandle("interstitial:didFailToReceiveAdWithError:"), sender.Handle, error.Handle);
 }
 public virtual void DidFailToReceiveAd(GADInterstitial sender, GADRequestError error)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
		public virtual void DidFailToReceiveAd (GADInterstitial sender, GADRequestError error)
		{
			throw new You_Should_Not_Call_base_In_This_Method ();
		}