AdzerkError
public enum AdzerkError : Error
extension AdzerkError: CustomStringConvertible, LocalizedError
Undocumented
-
Indicates a networking or connection error occurred
Declaration
Swift
case networkingError(Error) -
An error preparing the request, for instance, encoding the request body.
Declaration
Swift
case errorPreparingRequest(Error?) -
Indicates a non-200 HTTP result was returned
Declaration
Swift
case httpError(Int, Data) -
An error occurred while parsing (decoding) the response)
Declaration
Swift
case decodingError(DecodingError) -
non HTTP response received
Declaration
Swift
case invalidResponse -
A UserDB request was made but no user key was present
Declaration
Swift
case missingUserKey -
A Placement request was made but had no ad types
Declaration
Swift
case missingAdType -
Undocumented
Declaration
Swift
case otherError(Error) -
Declaration
Swift
public var description: String { get } -
Declaration
Swift
public var failureReason: String? { get } -
Declaration
Swift
public var errorDescription: String? { get }
View on GitHub
AdzerkError Enumeration Reference