packages feed

polysemy-http-0.8.0.0: lib/Polysemy/Http/Data/HttpError.hs

{-# options_haddock prune #-}
-- |Description: HttpError Data Type, Internal
module Polysemy.Http.Data.HttpError where

-- |Indicates a critical error caused by an exception in the http-client backend.
data HttpError =
  ChunkFailed Text
  |
  Internal Text
  deriving stock (Eq, Show)