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