DBRequestErrorTag
Objective-C
enum DBRequestErrorTag : NSInteger {}
Swift
enum DBRequestErrorTag : Int, @unchecked Sendable
Represents the possible error types that can be returned from network requests.
-
Errors produced at the HTTP layer.
Declaration
Objective-C
DBRequestErrorHttpSwift
case http = 0 -
Errors due to bad input parameters to an API Operation.
Declaration
Objective-C
DBRequestErrorBadInputSwift
case badInput = 1 -
Errors due to invalid authentication credentials.
Declaration
Objective-C
DBRequestErrorAuthSwift
case auth = 2 -
Errors due to invalid authentication credentials.
Declaration
Objective-C
DBRequestErrorPathRootSwift
case pathRoot = 3 -
Errors due to invalid permission to access.
Declaration
Objective-C
DBRequestErrorAccessSwift
case access = 4 -
Error caused by rate limiting.
Declaration
Objective-C
DBRequestErrorRateLimitSwift
case rateLimit = 5 -
Errors due to a problem on Dropbox.
Declaration
Objective-C
DBRequestErrorInternalServerSwift
case internalServer = 6 -
Errors due to a problem on the client-side of the SDK.
Declaration
Objective-C
DBRequestErrorClientSwift
case client = 7
View on GitHub
DBRequestErrorTag Enumeration Reference