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-boot5
1 files changed, 4 insertions, 1 deletions
diff --git a/libraries/base/GHC/Exception.hs-boot b/libraries/base/GHC/Exception.hs-boot
index aa19897363..594f2665e8 100644
--- a/libraries/base/GHC/Exception.hs-boot
+++ b/libraries/base/GHC/Exception.hs-boot
@@ -25,10 +25,13 @@ to get a visibly-bottom value.
-}
module GHC.Exception ( SomeException, errorCallException,
+ errorCallWithCallStackException,
divZeroException, overflowException, ratioZeroDenomException
) where
-import GHC.Types( Char )
+import GHC.Types( Char, CallStack )
data SomeException
divZeroException, overflowException, ratioZeroDenomException :: SomeException
+
errorCallException :: [Char] -> SomeException
+errorCallWithCallStackException :: [Char] -> CallStack -> SomeException