-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPayrailsError.swift
44 lines (42 loc) · 1.53 KB
/
PayrailsError.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import Foundation
public enum PayrailsError: Error, LocalizedError {
case authenticationError
case sdkNotInitialized
case missingData(String?)
case invalidDataFormat
case invalidCardData
case unknown(error: Error?)
case unsupportedPayment(type: Payrails.PaymentType)
case incorrectPaymentSetup(type: Payrails.PaymentType)
}
public extension PayrailsError {
var errorDescription: String? {
switch self {
case .authenticationError:
return "Authentication error: Token has expired"
case .sdkNotInitialized:
return "Payrails SDK has not been properly initialized"
case .invalidDataFormat:
return "Provided Config data is invalid and can not be parsed"
case .invalidCardData:
return "Invalid Card Data provided"
case .unknown(let error):
return error?.localizedDescription ?? "Unknown error appeared"
case let.missingData(missingData):
return String(
format: "SDK Configuration is missing field: %@",
missingData ?? "unknown field"
)
case .unsupportedPayment(type: let type):
return String(
format: "Payrails SDK version does not yet support %@",
type.rawValue
)
case .incorrectPaymentSetup(type: let type):
return String(
format: "Payrails SDK does not find proper configuration for payment %@",
type.rawValue
)
}
}
}