| Copyright | (c) Michael Weber <[email protected]> 2001 (c) Jeff Newbern 2003-2006 (c) Andriy Palamarchuk 2006 |
|---|---|
| License | BSD-style (see the file LICENSE) |
| Maintainer | [email protected] |
| Stability | experimental |
| Portability | non-portable (multi-parameter type classes) |
| Safe Haskell | Safe |
| Language | Haskell2010 |
Either String aThe Error monad (also called the Exception monad).
Since: mtl-2.2.1
Please do not confuse ExceptT and throwError with Exception / SomeException and catch, respectively. The latter are for exceptions built into GHC, by default, and are mostly used from within the IO monad. They do not interact with the "exceptions" in this package at all. This package allows you to define a new kind of exception control mechanism which does not necessarily need your code to be placed in the IO monad.
In short, all "catching" mechanisms in this library will be unable to catch exceptions thrown by functions in the Control.Exception module, and vice-versa.
class Monad m => MonadError e (m :: Type -> Type) | m -> e where Source
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 String as the monad type constructor for an error monad in which error descriptions take the form of strings. In that case and many other common cases the resulting monad is already defined as an instance of the MonadError class. You can also define your own error type and/or use a monad type constructor other than Either String or Either IOError. In these cases you will have to explicitly define instances of the MonadError class. (If you are using the deprecated Control.Monad.Error or Control.Monad.Trans.Error, you may also have to define an Error instance.)
throwError :: e -> m a Source
Is used within a monadic computation to begin exception processing.
catchError :: m a -> (e -> m a) -> m a Source
A handler function to handle previous errors and return to normal execution. A common idiom is:
do { action1; action2; action3 } `catchError` handler
where the action functions can call throwError. Note that handler and the do-block must have the same return type.
liftEither :: MonadError e m => Either e a -> m a Source
Lifts an Either e into any MonadError e.
do { val <- liftEither =<< action1; action2 }
where action1 returns an Either to represent errors.
Since: mtl-2.2.2
tryError :: MonadError e m => m a -> m (Either e a) Source
MonadError analogue to the try function.
withError :: MonadError e m => (e -> e) -> m a -> m a Source
MonadError analogue to the withExceptT function. Modify the value (but not the type) of an error. The type is fixed because of the functional dependency m -> e. If you need to change the type of e use mapError or modifyError.
handleError :: MonadError e m => (e -> m a) -> m a -> m a Source
As handle is flipped catch, handleError is flipped catchError.
mapError :: (MonadError e m, MonadError e' n) => (m (Either e a) -> n (Either e' b)) -> m a -> n b Source
MonadError analogue of the mapExceptT function. The computation is unwrapped, a function is applied to the Either, and the result is lifted into the second MonadError instance.
modifyError :: MonadError e' m => (e -> e') -> ExceptT e m a -> m a Source
A different MonadError analogue to the withExceptT function. Modify the value (and possibly the type) of an error in an ExceptT-transformed monad, while stripping the ExceptT layer.
This is useful for adapting the MonadError constraint of a computation.
For example:
data DatabaseError = ... performDatabaseQuery :: (MonadError DatabaseError m, ...) => m PersistedValue data AppError = MkDatabaseError DatabaseError | ... app :: (MonadError AppError m, ...) => m ()
Given these types, performDatabaseQuery cannot be used directly inside app, because the error types don't match. Using modifyError, an equivalent function with a different error type can be constructed:
performDatabaseQuery' :: (MonadError AppError m, ...) => m PersistedValue performDatabaseQuery' = modifyError MkDatabaseError performDatabaseQuery
Since the error types do match, performDatabaseQuery' _can_ be used in app, assuming all other constraints carry over.
This works by instantiating the m in the type of performDatabaseQuery to ExceptT DatabaseError m', which satisfies the MonadError DatabaseError constraint. Immediately, the ExceptT DatabaseError layer is unwrapped, producing Either a DatabaseError or a PersistedValue. If it's the former, the error is wrapped in MkDatabaseError and re-thrown in the inner monad, otherwise the result value is returned.
Since: mtl-2.3.1
newtype ExceptT e (m :: Type -> Type) a Source
A monad transformer that adds exceptions to other monads.
ExceptT constructs a monad parameterized over two things:
The monadic computations are a plain values. They are unrelated to the Control.Exception mechanism, which is tied to the IO monad.
The return function yields a computation that produces the given value, while >>= sequences two subcomputations, exiting on the first exception.
| MonadRWS r w s m => MonadRWS r w s (ExceptT e m) Source | Since: mtl-2.2 |
||||
Defined in Control.Monad.RWS.Class | |||||
| Functor m => Generic1 (ExceptT e m :: Type -> Type) Source | |||||
Defined in Control.Monad.Trans.Except Associated Types
| |||||
| MonadAccum w m => MonadAccum w (ExceptT e m) Source |
The accumulated value 'survives' an exception: even if the computation fails to deliver a result, we still have an accumulated value. Since: mtl-2.3 |
||||
| Monad m => MonadError e (ExceptT e m) Source | Since: mtl-2.2 |
||||
Defined in Control.Monad.Error.Class MethodsthrowError :: e -> ExceptT e m a Source catchError :: ExceptT e m a -> (e -> ExceptT e m a) -> ExceptT e m a Source | |||||
| MonadReader r m => MonadReader r (ExceptT e m) Source | Since: mtl-2.2 |
||||
| MonadSelect r m => MonadSelect r (ExceptT e m) Source |
'Extends' the possibilities considered by Since: mtl-2.3 |
||||
Defined in Control.Monad.Select | |||||
| MonadState s m => MonadState s (ExceptT e m) Source | Since: mtl-2.2 |
||||
| MonadWriter w m => MonadWriter w (ExceptT e m) Source | Since: mtl-2.2 |
||||
| MonadTrans (ExceptT e) Source | |||||
Defined in Control.Monad.Trans.Except | |||||
| (Eq e, Eq1 m) => Eq1 (ExceptT e m) Source | |||||
| (Ord e, Ord1 m) => Ord1 (ExceptT e m) Source | |||||
Defined in Control.Monad.Trans.Except | |||||
| (Read e, Read1 m) => Read1 (ExceptT e m) Source | |||||
Defined in Control.Monad.Trans.Except MethodsliftReadsPrec :: (Int -> ReadS a) -> ReadS [a] -> Int -> ReadS (ExceptT e m a) Source liftReadList :: (Int -> ReadS a) -> ReadS [a] -> ReadS [ExceptT e m a] Source liftReadPrec :: ReadPrec a -> ReadPrec [a] -> ReadPrec (ExceptT e m a) Source liftReadListPrec :: ReadPrec a -> ReadPrec [a] -> ReadPrec [ExceptT e m a] Source | |||||
| (Show e, Show1 m) => Show1 (ExceptT e m) Source | |||||
| Contravariant m => Contravariant (ExceptT e m) Source | |||||
| (Functor m, Monad m, Monoid e) => Alternative (ExceptT e m) Source | |||||
| (Functor m, Monad m) => Applicative (ExceptT e m) Source | |||||
Defined in Control.Monad.Trans.Except | |||||
| Functor m => Functor (ExceptT e m) Source | |||||
| Monad m => Monad (ExceptT e m) Source | |||||
| (Monad m, Monoid e) => MonadPlus (ExceptT e m) Source | |||||
| MonadFail m => MonadFail (ExceptT e m) Source | |||||
Defined in Control.Monad.Trans.Except | |||||
| MonadFix m => MonadFix (ExceptT e m) Source | |||||
Defined in Control.Monad.Trans.Except | |||||
| MonadIO m => MonadIO (ExceptT e m) Source | |||||
Defined in Control.Monad.Trans.Except | |||||
| MonadZip m => MonadZip (ExceptT e m) Source | |||||
| Foldable f => Foldable (ExceptT e f) Source | |||||
Defined in Control.Monad.Trans.Except Methodsfold :: Monoid m => ExceptT e f m -> m foldMap :: Monoid m => (a -> m) -> ExceptT e f a -> m foldMap' :: Monoid m => (a -> m) -> ExceptT e f a -> m foldr :: (a -> b -> b) -> b -> ExceptT e f a -> b foldr' :: (a -> b -> b) -> b -> ExceptT e f a -> b foldl :: (b -> a -> b) -> b -> ExceptT e f a -> b foldl' :: (b -> a -> b) -> b -> ExceptT e f a -> b foldr1 :: (a -> a -> a) -> ExceptT e f a -> a foldl1 :: (a -> a -> a) -> ExceptT e f a -> a toList :: ExceptT e f a -> [a] length :: ExceptT e f a -> Int elem :: Eq a => a -> ExceptT e f a -> Bool maximum :: Ord a => ExceptT e f a -> a minimum :: Ord a => ExceptT e f a -> a | |||||
| Traversable f => Traversable (ExceptT e f) Source | |||||
Defined in Control.Monad.Trans.Except | |||||
| MonadCont m => MonadCont (ExceptT e m) Source | Since: mtl-2.2 |
||||
| Generic (ExceptT e m a) Source | |||||
Defined in Control.Monad.Trans.Except Associated Types
| |||||
| (Read e, Read1 m, Read a) => Read (ExceptT e m a) Source | |||||
| (Show e, Show1 m, Show a) => Show (ExceptT e m a) Source | |||||
| (Eq e, Eq1 m, Eq a) => Eq (ExceptT e m a) Source | |||||
| (Ord e, Ord1 m, Ord a) => Ord (ExceptT e m a) Source | |||||
Defined in Control.Monad.Trans.Except Methodscompare :: ExceptT e m a -> ExceptT e m a -> Ordering (<) :: ExceptT e m a -> ExceptT e m a -> Bool (<=) :: ExceptT e m a -> ExceptT e m a -> Bool (>) :: ExceptT e m a -> ExceptT e m a -> Bool (>=) :: ExceptT e m a -> ExceptT e m a -> Bool | |||||
| type Rep1 (ExceptT e m :: Type -> Type) Source | |||||
Defined in Control.Monad.Trans.Except | |||||
| type Rep (ExceptT e m a) Source | |||||
Defined in Control.Monad.Trans.Except | |||||
type Except e = ExceptT e Identity Source
The parameterizable exception monad.
Computations are either exceptions (of any type) or normal values. These computations are plain values, and are unrelated to the Control.Exception mechanism, which is tied to the IO monad.
The return function returns a normal value, while >>= exits on the first exception. For a variant that continues after an error and collects all the errors, see Errors.
runExceptT :: ExceptT e m a -> m (Either e a) Source
The inverse of ExceptT.
mapExceptT :: (m (Either e a) -> n (Either e' b)) -> ExceptT e m a -> ExceptT e' n b Source
Map the unwrapped computation using the given function.
runExceptT (mapExceptT f m) = f (runExceptT m)
withExceptT :: forall (m :: Type -> Type) e e' a. Functor m => (e -> e') -> ExceptT e m a -> ExceptT e' m a Source
Transform any exceptions thrown by the computation using the given function.
runExcept :: Except e a -> Either e a Source
Extractor for computations in the exception monad. (The inverse of except).
mapExcept :: (Either e a -> Either e' b) -> Except e a -> Except e' b Source
Map the unwrapped computation using the given function.
withExcept :: (e -> e') -> Except e a -> Except e' a Source
Transform any exceptions thrown by the computation using the given function (a specialization of withExceptT).
Here is an example that demonstrates the use of a custom error data type with the throwError and catchError exception mechanism from MonadError. The example throws an exception if the user enters an empty string or a string longer than 5 characters. Otherwise it prints length of the string.
-- This is the type to represent length calculation error.
data LengthError = EmptyString -- Entered string was empty.
| StringTooLong Int -- A string is longer than 5 characters.
-- Records a length of the string.
| OtherError String -- Other error, stores the problem description.
-- Converts LengthError to a readable message.
instance Show LengthError where
show EmptyString = "The string was empty!"
show (StringTooLong len) =
"The length of the string (" ++ (show len) ++ ") is bigger than 5!"
show (OtherError msg) = msg
-- For our monad type constructor, we use Either LengthError
-- which represents failure using Left LengthError
-- or a successful result of type a using Right a.
type LengthMonad = Either LengthError
main = do
putStrLn "Please enter a string:"
s <- getLine
reportResult (calculateLength s)
-- Attempts to calculate length and throws an error if the provided string is
-- empty or longer than 5 characters.
-- (Throwing an error in this monad means returning a 'Left'.)
calculateLength :: String -> LengthMonad Int
calculateLength [] = throwError EmptyString
calculateLength s | len > 5 = throwError (StringTooLong len)
| otherwise = return len
where len = length s
-- Prints result of the string length calculation.
reportResult :: LengthMonad Int -> IO ()
reportResult (Right len) = putStrLn ("The length of the string is " ++ (show len))
reportResult (Left e) = putStrLn ("Length calculation failed with error: " ++ (show e))
ExceptT monad transformer can be used to add error handling to another monad. Here is an example how to combine it with an IO monad:
import Control.Monad.Except
-- An IO monad which can return String failure.
-- It is convenient to define the monad type of the combined monad,
-- especially if we combine more monad transformers.
type LengthMonad = ExceptT String IO
main = do
-- runExceptT removes the ExceptT wrapper
r <- runExceptT calculateLength
reportResult r
-- Asks user for a non-empty string and returns its length.
-- Throws an error if user enters an empty string.
calculateLength :: LengthMonad Int
calculateLength = do
-- all the IO operations have to be lifted to the IO monad in the monad stack
liftIO $ putStrLn "Please enter a non-empty string: "
s <- liftIO getLine
if null s
then throwError "The string was empty!"
else return $ length s
-- Prints result of the string length calculation.
reportResult :: Either String Int -> IO ()
reportResult (Right len) = putStrLn ("The length of the string is " ++ (show len))
reportResult (Left e) = putStrLn ("Length calculation failed with error: " ++ (show e))
© The University of Glasgow and others
Licensed under a BSD-style license (see top of the page).
https://downloads.haskell.org/~ghc/9.12.1/docs/libraries/mtl-2.3.1-a17d/Control-Monad-Except.html