[project @ 2004-02-05 11:58:21 by malcolm]
[ghc-base.git] / Control / Monad / Error.hs
index 979ae35..cfb536d 100644 (file)
@@ -1,20 +1,18 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Monad.Error
 -- Copyright   :  (c) Michael Weber <michael.weber@post.rwth-aachen.de>, 2001
--- License     :  BSD-style (see the file libraries/core/LICENSE)
+-- License     :  BSD-style (see the file libraries/base/LICENSE)
 -- 
 -- Maintainer  :  libraries@haskell.org
 -- Stability   :  experimental
--- Portability :  non-portable (reqruires multi-param type classes)
---
--- $Id: Error.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- Portability :  non-portable (multi-parameter type classes)
 --
 -- The Error monad.
 --
--- Rendered by Michael Weber <michael.weber@post.rwth-aachen.de>,
+-- Rendered by Michael Weber <mailto:michael.weber@post.rwth-aachen.de>,
 --     inspired by the Haskell Monad Template Library from
---      \A[HREF="http://www.cse.ogi.edu/~andy"]{Andy Gill}}
+--     Andy Gill (<http://www.cse.ogi.edu/~andy/>)
 --
 -----------------------------------------------------------------------------
 
@@ -22,7 +20,6 @@ module Control.Monad.Error (
        Error(..),
        MonadError(..),
        ErrorT(..),
-       runErrorT,
        mapErrorT,
        module Control.Monad,
        module Control.Monad.Fix,