summaryrefslogtreecommitdiff
path: root/src/compiler/GF/System/Catch.hs
blob: f69934af5187ec0328578f86fcf08f61b6950675 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- | Isolate backwards incompatible library changes to 'catch' and 'try'
{-# LANGUAGE CPP #-}
module GF.System.Catch where
import qualified System.IO.Error as S

-- ** Backwards compatible try and catch
#if MIN_VERSION_base(4,4,0)
catch = S.catchIOError
try = S.tryIOError
#else
catch = S.catch
try = S.try
#endif