summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/shared/elm/Util/Http.elm')
-rw-r--r-- | src/shared/elm/Util/Http.elm | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/shared/elm/Util/Http.elm b/src/shared/elm/Util/Http.elm deleted file mode 100644 index c098dc7..0000000 --- a/src/shared/elm/Util/Http.elm +++ /dev/null @@ -1,22 +0,0 @@ -module Util.Http exposing (error_to_string) - -import Http - -error_to_string : Http.Error -> String -error_to_string error = - case error of - (Http.BadUrl string) -> ("Invalid URL: \"" ++ string ++ "\"") - Http.Timeout -> "Timed out" - Http.NetworkError -> "Connection lost, network error." - (Http.BadStatus response) -> - ( - "The HTTP request failed: " - ++ (String.fromInt response) - ++ "." - ) - (Http.BadBody string) -> - ( - "Server response not understood:\"" - ++ string - ++ "\"." - ) |