GoogleMobileAds Framework Reference

  • GADErrorCode is an enum that lists various error codes for the GAD error domain, which are used as NSError codes.

  • Common errors include invalid requests (missing ad unit ID or root view controller), no fill (request successful but no ad returned), network errors, and server errors.

  • Other errors cover issues like the OS version being too low, request timeouts, and problems related to mediation such as invalid data, adapter issues, or invalid ad sizes.

  • Internal errors, invalid arguments, using an ad object that has already been used, and a missing application identifier are also defined error types.

  • An error code exists for receiving an invalid ad string.

GADErrorCode

enum GADErrorCode : NSInteger {}

NSError codes for GAD error domain.

  • The ad request is invalid. The localizedFailureReason error description will have more details. Typically this is because the ad did not have the ad unit ID or root view controller set.

    Declaration

    Swift

    static var invalidRequest: RequestError.Code { get }

    Objective-C

    GADErrorInvalidRequest = 0
  • The ad request was successful, but no ad was returned.

    Declaration

    Swift

    static var noFill: RequestError.Code { get }

    Objective-C

    GADErrorNoFill = 1
  • There was an error loading data from the network.

    Declaration

    Swift

    static var networkError: RequestError.Code { get }

    Objective-C

    GADErrorNetworkError = 2
  • The ad server experienced a failure processing the request.

    Declaration

    Swift

    static var serverError: RequestError.Code { get }

    Objective-C

    GADErrorServerError = 3
  • The current device’s OS is below the minimum required version.

    Declaration

    Swift

    static var osVersionTooLow: RequestError.Code { get }

    Objective-C

    GADErrorOSVersionTooLow = 4
  • The request was unable to be loaded before being timed out.

    Declaration

    Swift

    static var timeout: RequestError.Code { get }

    Objective-C

    GADErrorTimeout = 5
  • The mediation response was invalid.

    Declaration

    Swift

    static var mediationDataError: RequestError.Code { get }

    Objective-C

    GADErrorMediationDataError = 7
  • Error finding or creating a mediation ad network adapter.

    Declaration

    Swift

    static var mediationAdapterError: RequestError.Code { get }

    Objective-C

    GADErrorMediationAdapterError = 8
  • Attempting to pass an invalid ad size to an adapter.

    Declaration

    Swift

    static var mediationInvalidAdSize: RequestError.Code { get }

    Objective-C

    GADErrorMediationInvalidAdSize = 10
  • Internal error.

    Declaration

    Swift

    static var internalError: RequestError.Code { get }

    Objective-C

    GADErrorInternalError = 11
  • Invalid argument error.

    Declaration

    Swift

    static var invalidArgument: RequestError.Code { get }

    Objective-C

    GADErrorInvalidArgument = 12
  • Will not send request because the ad object has already been used.

    Declaration

    Swift

    static var adAlreadyUsed: RequestError.Code { get }

    Objective-C

    GADErrorAdAlreadyUsed = 19
  • Will not send request because the application identifier is missing.

    Declaration

    Swift

    static var applicationIdentifierMissing: RequestError.Code { get }

    Objective-C

    GADErrorApplicationIdentifierMissing = 20
  • Received invalid ad string.

    Declaration

    Swift

    static var receivedInvalidAdString: RequestError.Code { get }

    Objective-C

    GADErrorReceivedInvalidAdString = 21