VenueErrorCode

public enum VenueErrorCode : UInt32, CaseIterable, Codable
extension VenueErrorCode : Error

Specifies possible errors that may occur during loading of indoor maps

  • No network

    Declaration

    Swift

    case noNetwork = 1
  • Meta data missing error.

    Declaration

    Swift

    case noMetaDataFound
  • HRN not provided

    Declaration

    Swift

    case hrnMissing
  • HRN missmatch.

    Declaration

    Swift

    case hrnMismatch
  • Default collection missing.

    Declaration

    Swift

    case noDefaultCollection
  • Map ID not found.

    Declaration

    Swift

    case mapIdNotFound
  • Map data incorrect

    Declaration

    Swift

    case mapDataIncorrect
  • No map available in collection

    Declaration

    Swift

    case noMapInCollection
  • Bad request.

    Declaration

    Swift

    case badRequest = 400
  • Invalid authentication token

    Declaration

    Swift

    case tokenInvalid = 401
  • Requested resource not found.

    Declaration

    Swift

    case notFound = 404
  • Internal Server error

    Declaration

    Swift

    case internalServerError = 500
  • Service unavailable

    Declaration

    Swift

    case serviceUnavailable = 502
  • Payload too large.

    Declaration

    Swift

    case payloadTooLarge = 513