{-# LANGUAGE CPP #-}
module Control.Monad.Error
{-# DEPRECATED "Use Control.Monad.Except instead" #-} (
MonadError(..),
Error(..),
ErrorT(ErrorT),
runErrorT,
mapErrorT,
module Control.Monad,
module Control.Monad.Fix,
module Control.Monad.Trans,
) where
import Control.Monad.Error.Class
import Control.Monad.Trans
import Control.Monad.Trans.Error (ErrorT(ErrorT), runErrorT, mapErrorT)
import Control.Monad
import Control.Monad.Fix
#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ < 707
import Control.Monad.Instances ()
#endif