summaryrefslogtreecommitdiff
path: root/compiler/utils/Exception.hs
blob: 11172b59b176e95fa28def02d02d7013d29378f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

module Exception
    (
#if __GLASGOW_HASKELL__ >= 609
    module Control.OldException
#else
    module Control.Exception
#endif
    )
    where

import Prelude ()

#if __GLASGOW_HASKELL__ >= 609
import Control.OldException
#else
import Control.Exception
#endif