hIOerr :: FudgetIO f => Request -> (IOError -> f b ho) -> (Response -> f b ho) -> f b ho hIOerrF :: Request -> (IOError -> F a b) -> (Response -> F a b) -> F a b
hIOerr request failcont f
hIOerr
allows a fudget (or kernel) to output an arbitrary Haskell IO request and
wait for the response. hIOerr examines the response to see if an error
occurred, if so, an error continuation is invoked.
request :: Request
failcont :: IOError -> f b ho
f :: Response -> f b ho
hIOerrF (ReadFile "/etc/passwd") (\ioerr ->error ("Cannot open password file: " ++show ioerr)) $ \(Str s) -> ...