ref: 26622a01eee7b97946421aa8487fb5c1c11d6557
dir: /lib/Control/Exception/Internal.hs-boot/
-- Copyright 2024 Lennart Augustsson
-- See LICENSE file for full license.
module Control.Exception.Internal(
throw,
Exception(..),
SomeException,
) where
import Data.Char_Type
import Data.Typeable
throw :: forall e a. Exception e => e -> a
data SomeException
class (Typeable e, Show e) => Exception e where
toException :: e -> SomeException
fromException :: SomeException -> Maybe e
displayException :: e -> String