Hoogle Search
Within LTS Haskell 24.3 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
lifted-base Control.Exception.Lifted Superclass for asynchronous exceptions.
SomeAsyncException :: e -> SomeAsyncExceptionlifted-base Control.Exception.Lifted No documentation available.
-
lifted-base Control.Exception.Lifted 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.
SomeException :: e -> SomeExceptionlifted-base Control.Exception.Lifted No documentation available.
addExceptionContext :: ExceptionAnnotation a => a -> SomeException -> SomeExceptionlifted-base Control.Exception.Lifted Add more ExceptionContext to a SomeException.
asyncExceptionFromException :: Exception e => SomeException -> Maybe elifted-base Control.Exception.Lifted No documentation available.
asyncExceptionToException :: Exception e => e -> SomeExceptionlifted-base Control.Exception.Lifted No documentation available.
displayException :: Exception e => e -> Stringlifted-base Control.Exception.Lifted Render this exception value in a human-friendly manner. Default implementation: show.
fromException :: Exception e => SomeException -> Maybe elifted-base Control.Exception.Lifted No documentation available.
mapException :: (Exception e1, Exception e2) => (e1 -> e2) -> a -> alifted-base Control.Exception.Lifted This function maps one exception into another as proposed in the paper "A semantics for imprecise exceptions".