Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. SomeAsyncException :: e -> SomeAsyncException

    safe-exceptions Control.Exception.Safe

    No documentation available.

  2. data SomeException

    safe-exceptions Control.Exception.Safe

    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.

  3. SomeException :: e -> SomeException

    safe-exceptions Control.Exception.Safe

    No documentation available.

  4. data StringException

    safe-exceptions Control.Exception.Safe

    Exception type thrown by throwString. Note that the second field of the data constructor depends on GHC/base version. For base 4.9 and GHC 8.0 and later, the second field is a call stack. Previous versions of GHC and base do not support call stacks, and the field is simply unit (provided to make pattern matching across GHC versions easier).

  5. StringException :: String -> CallStack -> StringException

    safe-exceptions Control.Exception.Safe

    No documentation available.

  6. data SyncExceptionWrapper

    safe-exceptions Control.Exception.Safe

    Wrap up an asynchronous exception to be treated as a synchronous exception This is intended to be created via toSyncException

  7. SyncExceptionWrapper :: e -> SyncExceptionWrapper

    safe-exceptions Control.Exception.Safe

    No documentation available.

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

    safe-exceptions Control.Exception.Safe

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

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

    safe-exceptions Control.Exception.Safe

    No documentation available.

  10. isAsyncException :: Exception e => e -> Bool

    safe-exceptions Control.Exception.Safe

    Check if the given exception is asynchronous

Page 16 of many | Previous | Next