SdkInitializationError

public enum SdkInitializationError : Error
extension SdkInitializationError: LocalizedError

A type that represents an error that can be thrown during initialization of the SDK

  • Thrown in case the device passcode is not set.

    Declaration

    Swift

    case noDevicePasscodeError
  • Thrown if one of the followings case detected:

    • Rooted device detection
    • Simulator detection (SDK is executed in a simulator)
    • Debugger detection

    Declaration

    Swift

    case deviceProtectionError
  • A localized message describing what error occurred.

    Declaration

    Swift

    public var errorDescription: String? { get }