Safe Haskell | None |
---|---|
Language | Haskell2010 |
- finally :: MonadBracket m => m a -> m b -> m a
- try :: (MonadCatch m, Exception e) => m a -> m (Either e a)
- data SomeException :: *
Documentation
finally :: MonadBracket m => m a -> m b -> m a Source #
data SomeException :: * #
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
.
Show SomeException | Since: 3.0 |
Exception SomeException | Since: 3.0 |