Hoogle Search

Within LTS Haskell 24.2 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. data SomeAsyncException

    base Control.Exception.Base

    Superclass for asynchronous exceptions.

  2. SomeAsyncException :: e -> SomeAsyncException

    base Control.Exception.Base

    No documentation available.

  3. data SomeException

    base Control.Exception.Base

    The SomeException type is the root of the exception type hierarchy. When an exception of type e is thrown, behind the scenes it is encapsulated in a SomeException.

  4. SomeException :: e -> SomeException

    base Control.Exception.Base

    No documentation available.

  5. asyncExceptionFromException :: Exception e => SomeException -> Maybe e

    base Control.Exception.Base

    No documentation available.

  6. asyncExceptionToException :: Exception e => e -> SomeException

    base Control.Exception.Base

    No documentation available.

  7. displayException :: Exception e => e -> String

    base Control.Exception.Base

    Render this exception value in a human-friendly manner. Default implementation: show.

  8. fromException :: Exception e => SomeException -> Maybe e

    base Control.Exception.Base

    No documentation available.

  9. mapException :: (Exception e1, Exception e2) => (e1 -> e2) -> a -> a

    base Control.Exception.Base

    This function maps one exception into another as proposed in the paper "A semantics for imprecise exceptions".

  10. onException :: IO a -> IO b -> IO a

    base Control.Exception.Base

    Like finally, but only performs the final action if there was an exception raised by the computation.

Page 10 of many | Previous | Next