hxt-9.3.1.15: A collection of tools for processing XML with Haskell.

CopyrightCopyright (C) 2010 Uwe Schmidt
LicenseMIT
MaintainerUwe Schmidt (uwe\@fh-wedel.de)
Stabilityexperimental
Portabilitynot portable
Safe HaskellSafe
LanguageHaskell98

Control.Arrow.ArrowExc

Description

The exception arrow class

Documentation

class (Arrow a, ArrowChoice a, ArrowZero a, ArrowIO a) => ArrowExc a where

Minimal complete definition

tryA

Methods

tryA :: a b c -> a b (Either SomeException c)

catchA :: a b c -> a SomeException c -> a b c

Instances