8 Oct
2008
8 Oct
'08
3:35 p.m.
On Wed, Oct 8, 2008 at 9:58 AM, Philip K.F. Hölzenspies <p.k.f.holzenspies@utwente.nl> wrote:
some_catch_function (error "foo") (error "bar")
should result in an error "bar"
It's a good thing we've already got a function for that!
Prelude.catch (error "foo") (error "bar") *** Exception: foo
Control.Exception.catch (error "foo") (error "bar") *** Exception: bar
-Antoine