SASAdError

Objective-C

@interface SASAdError : NSObject

Swift

class SASAdError : NSObject

Class used to represent a single ad loading error.

  • The insertion ID of the ad that has triggered this error if any, nil otherwise.

    Declaration

    Objective-C

    @property (readonly, nullable) NSString *insertionID;

    Swift

    var insertionID: String? { get }
  • The description of the error preventing the ad adapter from being loaded.

    Declaration

    Objective-C

    @property (readonly) NSString *_Nonnull error;

    Swift

    var error: String { get }