cli-utils-4.1.0
LicenseBSD3
Maintainertbidne@gmail.com
Safe HaskellSafe
LanguageHaskell2010

Git.Stale.Types.Error

Description

Provides Err type for describing any errors encountered.

Synopsis

Documentation

data Err Source #

Wraps Text to describe an error. Git* errors describe errors encountered by the underlying MonadFindBranches monad. Others describe pure errors encountered during parsing data returned by the monad.

Instances

Instances details
Show Err Source # 
Instance details

Defined in Git.Stale.Types.Error

Methods

showsPrec :: Int -> Err -> ShowS #

show :: Err -> String #

showList :: [Err] -> ShowS #

type ErrOr a = Either Err a Source #

Alias for convenience.