packages feed

api-builder-0.1.0.0: src/APIBuilder/Error.hs

module APIBuilder.Error
  ( APIError(..) ) where

import Network.HTTP.Conduit (HttpException)

data APIError a = APIError a
                | HTTPError HttpException
                | InvalidURLError
                | ParseError String
  deriving Show