| Copyright | (c) Michael Weber <michael.weber@post.rwth-aachen.de> 2001, (c) Jeff Newbern 2003-2006, (c) Andriy Palamarchuk 2006 | 
|---|---|
| License | BSD-style (see the file LICENSE) | 
| Maintainer | ross@soi.city.ac.uk | 
| Stability | experimental | 
| Portability | non-portable (type families) | 
| Safe Haskell | Safe-Inferred | 
| Language | Haskell98 | 
Control.Monad.Error.Class
Description
- Computation type:
- Computations which may fail or throw exceptions.
- Binding strategy:
- Failure records information about the cause/location of the failure. Failure values bypass the bound function, other values are used as inputs to the bound function.
- Useful for:
- Building computations from sequences of functions that may fail or using exception handling to structure error handling.
- Zero and plus:
- Zero is represented by an empty error and the plus operation executes its second argument if the first fails.
- Example type:
- Either- Stringa
The Error monad (also called the Exception monad).
- class Error a where
- class Monad m => MonadError m where- type ErrorType m
- throwError :: ErrorType m -> m a
- catchError :: m a -> (ErrorType m -> m a) -> m a
 
Documentation
class Error a where
Minimal complete definition
Nothing
Instances
| Error IOException | |
| ErrorList a => Error [a] | A string can be thrown as an error. | 
class Monad m => MonadError m where
The strategy of combining computations that can throw exceptions by bypassing bound functions from the point an exception is thrown to the point that it is handled.
Is parameterized over the type of error information and
the monad type constructor.
It is common to use Either StringMonadError class.
You can also define your own error type and/or use a monad type constructor
other than Either StringEither IOErrorError
and/or MonadError classes.
Associated Types
type ErrorType m
Methods
throwError :: ErrorType m -> m a
Is used within a monadic computation to begin exception processing.
catchError :: m a -> (ErrorType m -> m a) -> m a
A handler function to handle previous errors and return to normal execution. A common idiom is:
do { action1; action2; action3 } `catchError` handlerwhere the action functions can call throwError.
    Note that handler and the do-block must have the same return type.
Instances
| MonadError IO | |
| Error e => MonadError (Either e) | |
| MonadError m => MonadError (MaybeT m) | |
| MonadError m => MonadError (ListT m) | |
| MonadError m => MonadError (IdentityT m) | |
| (Monoid w, MonadError m) => MonadError (WriterT w m) | |
| (Monoid w, MonadError m) => MonadError (WriterT w m) | |
| MonadError m => MonadError (StateT s m) | |
| MonadError m => MonadError (StateT s m) | |
| MonadError m => MonadError (ReaderT r m) | |
| (Monad m, Error e) => MonadError (ErrorT e m) | |
| (Monoid w, MonadError m) => MonadError (RWST r w s m) | |
| (Monoid w, MonadError m) => MonadError (RWST r w s m) |