Skip to content

Commit 43e55be

Browse files
Merge pull request #11 from pwszebor-vimn/pwszebor-vimn/feature/add-customnserror-conformance
Conform URLSessionDecodableError to CustomNSError
2 parents bb703ca + 2a2ed6f commit 43e55be

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// Copyright © 2024 Viacom. All rights reserved.
2+
3+
import Foundation
4+
5+
extension URLSessionDecodableError: CustomNSError {
6+
public static let errorDomain = "URLSessionDecodable"
7+
8+
public var errorCode: Int {
9+
switch self {
10+
case .unknown: return 1
11+
case .urlSession: return 2
12+
case .deserialization: return 3
13+
case .nonHTTPResponse: return 4
14+
case .serverResponse: return 5
15+
}
16+
}
17+
18+
public var errorUserInfo: [String: Any] {
19+
switch self {
20+
case let .urlSession(error):
21+
return [NSUnderlyingErrorKey: error]
22+
case let .deserialization(deserialization):
23+
return deserialization.underlyingError.map {
24+
[NSUnderlyingErrorKey: $0]
25+
} ?? [:]
26+
case .unknown, .nonHTTPResponse, .serverResponse:
27+
return [:]
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)