DBFILESSaveUrlErrorTag
Objective-C
enum DBFILESSaveUrlErrorTag : NSInteger {}
Swift
@frozen enum DBFILESSaveUrlErrorTag : Int, @unchecked Sendable
The DBFILESSaveUrlErrorTag
enum type represents the possible tag states
with which the DBFILESSaveUrlError
union can exist.
-
(no description).
Declaration
Objective-C
DBFILESSaveUrlErrorPath
Swift
case path = 0
-
Failed downloading the given URL. The URL may be password-protected and the password provided was incorrect, or the link may be disabled.
Declaration
Objective-C
DBFILESSaveUrlErrorDownloadFailed
Swift
case downloadFailed = 1
-
The given URL is invalid.
Declaration
Objective-C
DBFILESSaveUrlErrorInvalidUrl
Swift
case invalidUrl = 2
-
The file where the URL is saved to no longer exists.
Declaration
Objective-C
DBFILESSaveUrlErrorNotFound
Swift
case notFound = 3
-
(no description).
Declaration
Objective-C
DBFILESSaveUrlErrorOther
Swift
case other = 4