Page Summary
-
IMAAdLoadingErrorData is an object returned when the ads loader fails to load an ad.
-
It contains an
adErrorproperty indicating the specific error that occurred during ad loading. -
It also contains a
userContextproperty, which is the user context specified in the original ads request.
IMAAdLoadingErrorData
@interface IMAAdLoadingErrorData : NSObjectAd error data that is returned when the ads loader fails to load the ad.
-
The ad error that occurred while loading the ad.
Declaration
Swift
var adError: IMAAdError { get }Objective-C
@property (nonatomic, readonly) IMAAdError *_Nonnull adError; -
The user context specified in the ads request.
Declaration
Swift
var userContext: Any? { get }Objective-C
@property (nonatomic, readonly, nullable) id userContext;