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

#if MIN_VERSION_base(4,4,0)
catch = S.catchIOError
try = S.tryIOError
#else
catch = S.catch
try = S.try
#endif