summaryrefslogtreecommitdiff
path: root/libraries/base/GHC/Exception.hs-boot
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/base/GHC/Exception.hs-boot')
-rw-r--r--libraries/base/GHC/Exception.hs-boot16
1 files changed, 7 insertions, 9 deletions
diff --git a/libraries/base/GHC/Exception.hs-boot b/libraries/base/GHC/Exception.hs-boot
index d539dd4962..4507b20790 100644
--- a/libraries/base/GHC/Exception.hs-boot
+++ b/libraries/base/GHC/Exception.hs-boot
@@ -24,17 +24,15 @@ well-behaved, non-bottom values. The clients use 'raise#'
to get a visibly-bottom value.
-}
-module GHC.Exception ( SomeException, errorCallException,
- errorCallWithCallStackException,
- divZeroException, overflowException, ratioZeroDenomException,
- underflowException
- ) where
+module GHC.Exception
+ ( module GHC.Exception.Type
+ , errorCallException
+ , errorCallWithCallStackException
+ ) where
+
+import {-# SOURCE #-} GHC.Exception.Type
import GHC.Types ( Char )
import GHC.Stack.Types ( CallStack )
-data SomeException
-divZeroException, overflowException, ratioZeroDenomException :: SomeException
-underflowException :: SomeException
-
errorCallException :: [Char] -> SomeException
errorCallWithCallStackException :: [Char] -> CallStack -> SomeException