purescript-contrib / purescript-affjax

An asynchronous AJAX library built using Aff.
Apache License 2.0
122 stars 78 forks source link

throw timeout error not as `XHRError Exn.Error`, but as separate error #155

Closed srghma closed 3 years ago

srghma commented 3 years ago

Describe the solution you'd like

change

data Error
  = RequestContentError String
  | ResponseBodyError ForeignError (Response Foreign)
  | XHRError Exn.Error

to

data Error
  = RequestContentError String
  | ResponseBodyError ForeignError (Response Foreign)
  | XHRError Exn.Error
  | TimeoutError