hmm, so is it expected behaviour for `job.cancel(E...
# coroutines
g
hmm, so is it expected behaviour for
job.cancel(Exception("blam!"))
to synchronously hit the uncaught exception handler? I would've thought that the exception you give to
cancel
would be the
cause
on a
CancellationException
raised in the co-routine of the cancelled job.