packages feed

prelude-compat-0.0: catch/new/Catch.hs

module Catch where

import System.IO.Error (catchIOError)

catch :: IO a -> (IOError -> IO a) -> IO a
catch = catchIOError