BearErrorType
@objc
public enum BearErrorType : Int
The BearErrorType describes type of occurred error.
-
The invalidSecretKey type of an error, which means that provided secret key is invalid and cannot be used.
Declaration
Swift
case invalidSecretKey -
The network type of an error, which means that an error occurred while executing network request.
Declaration
Swift
case network -
The decoding type of an error, which means that an error occurred while decoding data.
Declaration
Swift
case decoding -
The backend type of an error, which means that backend returns an error instead of requested data.
Declaration
Swift
case backend -
The specific type of an error. For detailed explanation check
additionalInfoproperty of BearError.Declaration
Swift
case specific -
The unknown type of an error.
Declaration
Swift
case unknown
View on GitHub
BearErrorType Enumeration Reference