Skip to content

Instantly share code, notes, and snippets.

View jordanhamill's full-sized avatar

Jordan Hamill jordanhamill

  • Northern Ireland
View GitHub Profile
import Foundation
import BrightFutures
public enum HTTPSessionError: Error {
case urlSessionError(Error)
case badResponse
case redirection(Int)
case clientError(Int)
case serverError(Int)