|
Org.Org.Semantic.HBase.Category.MonadException |
|
|
|
|
|
Synopsis |
|
|
|
Documentation |
|
class Monad m => MonadThrow ex m where |
note no fundep | | Methods | | | Instances | |
|
|
class MonadThrow ex m => MonadSingleThrow ex m | m -> ex |
same but with fundep | | Instances | |
|
|
throwSingle :: MonadSingleThrow ex m => ex -> m a |
|
class MonadThrow ex m => MonadException ex m where |
note no fundep | | Methods | catch :: m a -> (ex -> m a) -> m a |
| | Instances | |
|
|
class (MonadException ex m, MonadSingleThrow ex m) => MonadSingleException ex m | m -> ex |
same but with fundep | | Instances | |
|
|
catchSingle :: MonadSingleException ex m => m a -> (ex -> m a) -> m a |
|
Produced by Haddock version 0.6 |