chatty-utils-0.7.3.3: Some utilities every serious chatty-based application may need.

Safe HaskellSafe
LanguageHaskell2010

Data.Chatty.Fail

Description

Provides a monad for error handling. Okay, I confess it's equal to ErrorT... You should use that one.

Synopsis

Documentation

newtype FailT e m a Source

The error handling monad.

Constructors

Fail 

Fields

runFailT :: m (Either e a)
 

Instances