BTCardError
public enum BTCardError : Error, CustomNSError, LocalizedError, Equatable
-
- Unknown error
Declaration
Swift
case unknown -
- Braintree SDK is integrated incorrectly
Declaration
Swift
case integration -
- Customer provided invalid input
Declaration
Swift
case customerInputInvalid([String : Any]) -
- Card already exists as a saved payment method
Declaration
Swift
case cardAlreadyExists([String : Any]) -
- Failed to fetch Braintree configuration
Declaration
Swift
case fetchConfigurationFailed -
Declaration
Swift
public static var errorDomain: String { get } -
Declaration
Swift
public var errorCode: Int { get } -
Declaration
Swift
public var errorUserInfo: [String : Any] { get }
-
Declaration
Swift
public static func == (lhs: BTCardError, rhs: BTCardError) -> Bool
View on GitHub