HubActivationError

enum HubActivationError
extension HubActivationError : Equatable, Hashable, Sendable

Hub activation specific errors.

  • Failed to construct the web URL due to some invalid parameters.

    Declaration

    Swift

    case failedToConstructWebURL
  • Hub’s discovery code is not valid.

    Declaration

    Swift

    case invalidDiscoveryCode
  • Hub’s IP address is not valid.

    Declaration

    Swift

    case invalidIPAddress
  • User aborted the hub activation via the web view.

    Declaration

    Swift

    case userAborted
  • User cancelled the hub activation via the web view.

    Declaration

    Swift

    case userCancelled
  • Other errors contain the detail as the reason.

    Declaration

    Swift

    case other(_ arg: String)