12 Oct
2007
12 Oct
'07
1:52 p.m.
In ghci, why does throw $ ArithException DivideByZero print *** Exception: divide by zero while throwDyn $ ArithException DivideByZero print *** Exception: (unknown) ? Mike
13 Oct
13 Oct
6:03 a.m.
throwDyn e = throw (DynException (toDyn e)) You're wrapping the exception in a "DynException" wrapper, which shows up as "(unknown)". -- ryan
6868
Age (days ago)
6868
Last active (days ago)
1 comments
2 participants
participants (2)
-
Michael Vanier -
Ryan Ingram