summaryrefslogtreecommitdiff
path: root/libraries/base/GHC/Exception.hs-boot
diff options
context:
space:
mode:
authorOleg Grenrus <oleg.grenrus@iki.fi>2017-02-01 22:49:17 -0500
committerBen Gamari <ben@smart-cactus.org>2017-02-01 23:37:47 -0500
commit1fcede43d2b30f33b7505e25eb6b1f321be0407f (patch)
tree9c206c94aa567b0a8d53cc65156666c26030d955 /libraries/base/GHC/Exception.hs-boot
parentf5b275a239d2554c4da0b7621211642bf3b10650 (diff)
downloadhaskell-1fcede43d2b30f33b7505e25eb6b1f321be0407f.tar.gz
Introduce GHC.TypeNats module, change KnownNat evidence to be Natural
Reviewers: dfeuer, austin, hvr, bgamari Reviewed By: bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D3024 GHC Trac Issues: #13181
Diffstat (limited to 'libraries/base/GHC/Exception.hs-boot')
-rw-r--r--libraries/base/GHC/Exception.hs-boot4
1 files changed, 3 insertions, 1 deletions
diff --git a/libraries/base/GHC/Exception.hs-boot b/libraries/base/GHC/Exception.hs-boot
index f89fed1aa2..d539dd4962 100644
--- a/libraries/base/GHC/Exception.hs-boot
+++ b/libraries/base/GHC/Exception.hs-boot
@@ -26,13 +26,15 @@ to get a visibly-bottom value.
module GHC.Exception ( SomeException, errorCallException,
errorCallWithCallStackException,
- divZeroException, overflowException, ratioZeroDenomException
+ divZeroException, overflowException, ratioZeroDenomException,
+ underflowException
) where
import GHC.Types ( Char )
import GHC.Stack.Types ( CallStack )
data SomeException
divZeroException, overflowException, ratioZeroDenomException :: SomeException
+underflowException :: SomeException
errorCallException :: [Char] -> SomeException
errorCallWithCallStackException :: [Char] -> CallStack -> SomeException