You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
annotateIO is added to base-4.20 published with ghc-9.10:
--| Execute an 'IO' action, adding the given 'ExceptionContext'-- to any thrown synchronous exceptions.---- @since base-2.20.0.0annotateIO::forallea.ExceptionAnnotatione=>e->IOa->IOa
annotateIO ann (IO io) =IO (catch# io handler)
where
handler se = raiseIO# (addExceptionContext ann se)
This should be added to MonadThrow.
The text was updated successfully, but these errors were encountered:
annotateIO
is added tobase-4.20
published withghc-9.10
:This should be added to
MonadThrow
.The text was updated successfully, but these errors were encountered: