Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Documentation
catchIO :: IO a -> (IOException -> IO a) -> IO a Source #
Catch IOException
.
tryIO :: IO a -> IO (Either IOException a) Source #
Try IOException
.
displayException :: Exception e => e -> String Source #
Render this exception value in a human-friendly manner.
Default implementation:
.show
Since: base-4.8.0.0
$dmdisplayException :: Exception e => e -> String Source #