diff options
Diffstat (limited to 'libraries/base/GHC/Exception.hs-boot')
-rw-r--r-- | libraries/base/GHC/Exception.hs-boot | 4 |
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 |