gitextract_lopqhozs/ ├── .gitignore ├── .travis.yml ├── Cartfile ├── Cartfile.resolved ├── ErrorHandler/ │ ├── Assets/ │ │ └── .gitkeep │ └── Classes/ │ ├── .gitkeep │ ├── Alamofire/ │ │ ├── AFErrorStatusCodeMatcher.swift │ │ └── ErrorHandler+AFExtensions.swift │ └── Core/ │ ├── ErrorHandler.swift │ ├── Matchers.swift │ └── NSErrorMatcher.swift ├── ErrorHandler.podspec ├── Example/ │ ├── ErrorHandler/ │ │ ├── AFError+Extensions.swift │ │ ├── AlertManager.swift │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── DefaultErrorHandler.swift │ │ ├── ErrorHandlingTableViewController.swift │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── ErrorHandler.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ ├── Podfile │ ├── Pods/ │ │ ├── Alamofire/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── Source/ │ │ │ ├── AFError.swift │ │ │ ├── Alamofire.swift │ │ │ ├── AlamofireExtended.swift │ │ │ ├── CachedResponseHandler.swift │ │ │ ├── DispatchQueue+Alamofire.swift │ │ │ ├── EventMonitor.swift │ │ │ ├── HTTPHeaders.swift │ │ │ ├── HTTPMethod.swift │ │ │ ├── MultipartFormData.swift │ │ │ ├── MultipartUpload.swift │ │ │ ├── NetworkReachabilityManager.swift │ │ │ ├── Notifications.swift │ │ │ ├── OperationQueue+Alamofire.swift │ │ │ ├── ParameterEncoder.swift │ │ │ ├── ParameterEncoding.swift │ │ │ ├── Protector.swift │ │ │ ├── RedirectHandler.swift │ │ │ ├── Request.swift │ │ │ ├── RequestInterceptor.swift │ │ │ ├── RequestTaskMap.swift │ │ │ ├── Response.swift │ │ │ ├── ResponseSerialization.swift │ │ │ ├── Result+Alamofire.swift │ │ │ ├── RetryPolicy.swift │ │ │ ├── ServerTrustEvaluation.swift │ │ │ ├── Session.swift │ │ │ ├── SessionDelegate.swift │ │ │ ├── URLConvertible+URLRequestConvertible.swift │ │ │ ├── URLEncodedFormEncoder.swift │ │ │ ├── URLRequest+Alamofire.swift │ │ │ ├── URLSessionConfiguration+Alamofire.swift │ │ │ └── Validation.swift │ │ ├── Local Podspecs/ │ │ │ └── ErrorHandler.podspec.json │ │ └── Target Support Files/ │ │ ├── Alamofire/ │ │ │ ├── Alamofire-Info.plist │ │ │ ├── Alamofire-dummy.m │ │ │ ├── Alamofire-prefix.pch │ │ │ ├── Alamofire-umbrella.h │ │ │ ├── Alamofire.modulemap │ │ │ ├── Alamofire.xcconfig │ │ │ └── Info.plist │ │ ├── ErrorHandler/ │ │ │ ├── ErrorHandler-Info.plist │ │ │ ├── ErrorHandler-dummy.m │ │ │ ├── ErrorHandler-prefix.pch │ │ │ ├── ErrorHandler-umbrella.h │ │ │ ├── ErrorHandler.modulemap │ │ │ ├── ErrorHandler.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-ErrorHandler_Example/ │ │ │ ├── Info.plist │ │ │ ├── Pods-ErrorHandler_Example-Info.plist │ │ │ ├── Pods-ErrorHandler_Example-acknowledgements.markdown │ │ │ ├── Pods-ErrorHandler_Example-acknowledgements.plist │ │ │ ├── Pods-ErrorHandler_Example-dummy.m │ │ │ ├── Pods-ErrorHandler_Example-frameworks.sh │ │ │ ├── Pods-ErrorHandler_Example-resources.sh │ │ │ ├── Pods-ErrorHandler_Example-umbrella.h │ │ │ ├── Pods-ErrorHandler_Example.debug.xcconfig │ │ │ ├── Pods-ErrorHandler_Example.modulemap │ │ │ └── Pods-ErrorHandler_Example.release.xcconfig │ │ └── Pods-ErrorHandler_Tests/ │ │ ├── Info.plist │ │ ├── Pods-ErrorHandler_Tests-Info.plist │ │ ├── Pods-ErrorHandler_Tests-acknowledgements.markdown │ │ ├── Pods-ErrorHandler_Tests-acknowledgements.plist │ │ ├── Pods-ErrorHandler_Tests-dummy.m │ │ ├── Pods-ErrorHandler_Tests-frameworks.sh │ │ ├── Pods-ErrorHandler_Tests-resources.sh │ │ ├── Pods-ErrorHandler_Tests-umbrella.h │ │ ├── Pods-ErrorHandler_Tests.debug.xcconfig │ │ ├── Pods-ErrorHandler_Tests.modulemap │ │ └── Pods-ErrorHandler_Tests.release.xcconfig │ └── Tests/ │ ├── AFErrorStatusCodeMatcherTests.swift │ ├── ClosureErrorMatcherTests.swift │ ├── ErrorHandler-AFExtensionsTests.swift │ ├── ErrorHandlerTests.swift │ ├── ErrorTypeMatcherTests.swift │ ├── Info.plist │ └── NSErrorMatcherTests.swift ├── LICENSE ├── Package.swift └── README.md