PasswordChangeErrorType

@objc
public enum PasswordChangeErrorType : Int

The possible error types can occur during NMAPasswordChange operation.

  • The specified user in username(_:) does not have an enrolled password.

    Declaration

    Swift

    case PasswordNotEnrolled
  • The password change was cancelled.

    Declaration

    Swift

    case UserCanceled
  • The password was locked because of too many failures.

    Declaration

    Swift

    case PasswordLocked
  • The iOS device has no passcode set.

    Declaration

    Swift

    case NoDeviceLockError
  • Unknown error, handling not categorized error cases.

    Requires

    iOS platform

    Declaration

    Swift

    case Unknown