リクエストパーサーからの例外を処理しようとしています:
go bs =
case try $ parseRequest reader bs secure of
Left ex -> exceptionHandler writer ex
Right (request, bs') -> do
sendResponse writer =<< app request
go bs'
しかし、使用時に問題がありますtry
:
Couldn't match expected type `IO (Either e0 (Request, ByteString))'
with actual type `Either t0 t1'
In the pattern: Left ex
In a case alternative: Left ex -> exceptionHandler writer ex
In the expression:
case try $ parseRequest reader bs secure of {
Left ex -> exceptionHandler writer ex
Right (request, bs')
-> do { sendResponse writer =<< app request;
go bs' } }
IO (Either e0 (Request, ByteString))
try
は、そのタイプが であるため、取得することを除いて、まさに私が取得するものですtry :: Exception e => IO a -> IO (Either e a)
が、代わりに を取得しEither e a
ます。
私は何が欠けていますか?