UserManagerError

public enum UserManagerError : Error
extension UserManagerError: SAPError

Enum to handle error in UserManager

  • current user is not set

    Declaration

    Swift

    case userNotSet
  • already existed user with onboarding id

    Declaration

    Swift

    case userAlreadyExists(with: String)
  • user mismatch happened with onboarding id

    Declaration

    Swift

    case userMismatch(with: String?)
  • Declaration

    Swift

    public var description: String { get }
  • A localized message describing the debug information.

    Declaration

    Swift

    public var debugDescription: String { get }
  • A localized message describing what error occurred.

    Declaration

    Swift

    public var errorDescription: String? { get }
  • A localized message describing the reason for the failure.

    Declaration

    Swift

    public var failureReason: String? { get }