LockFileError

public enum LockFileError : CustomStringConvertible, JSONRepresentable

The LockFileError union

  • Could not find the specified resource.

    Declaration

    Swift

    case pathLookup(Files.LookupError)
  • There are too many write operations in user’s Dropbox. Please retry this request.

    Declaration

    Swift

    case tooManyWriteOperations
  • There are too many files in one request. Please retry with fewer files.

    Declaration

    Swift

    case tooManyFiles
  • The user does not have permissions to change the lock state or access the file.

    Declaration

    Swift

    case noWritePermission
  • Item is a type that cannot be locked.

    Declaration

    Swift

    case cannotBeLocked
  • Requested file is not currently shared.

    Declaration

    Swift

    case fileNotShared
  • The user action conflicts with an existing lock on the file.

    Declaration

    Swift

    case lockConflict(Files.LockConflictError)
  • Something went wrong with the job on Dropbox’s end. You’ll need to verify that the action you were taking succeeded, and if not, try again. This should happen very rarely.

    Declaration

    Swift

    case internalError
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }