packages feed

yeganesh-2.4: Catch.hs

{-# LANGUAGE CPP #-}
module Catch (catch) where

#if MIN_VERSION_base(4,0,0)
import qualified Control.Exception
import Prelude hiding (catch)

catch :: IO a -> (Control.Exception.IOException -> IO a) -> IO a
catch = Control.Exception.catch
#endif