Follow extensible exception changes
[ghc-hetmet.git] / compiler / utils / Exception.hs
1
2 module Exception
3     (
4 #if __GLASGOW_HASKELL__ >= 609
5     module Control.OldException
6 #else
7     module Control.Exception
8 #endif
9     )
10     where
11
12 import Prelude ()
13
14 #if __GLASGOW_HASKELL__ >= 609
15 import Control.OldException
16 #else
17 import Control.Exception
18 #endif
19