SaveUrlError

public enum SaveUrlError : CustomStringConvertible, JSONRepresentable

The SaveUrlError union

  • An unspecified error.

    Declaration

    Swift

    case path(Files.WriteError)
  • Failed downloading the given URL. The URL may be password-protected and the password provided was incorrect, or the link may be disabled.

    Declaration

    Swift

    case downloadFailed
  • The given URL is invalid.

    Declaration

    Swift

    case invalidUrl
  • The file where the URL is saved to no longer exists.

    Declaration

    Swift

    case notFound
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }