RestoreError

public enum RestoreError : CustomStringConvertible, JSONRepresentable

The RestoreError union

  • An error occurs when downloading metadata for the file.

    Declaration

    Swift

    case pathLookup(Files.LookupError)
  • An error occurs when trying to restore the file to that path.

    Declaration

    Swift

    case pathWrite(Files.WriteError)
  • The revision is invalid. It may not exist or may point to a deleted file.

    Declaration

    Swift

    case invalidRevision
  • The restore is currently executing, but has not yet completed.

    Declaration

    Swift

    case inProgress
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }