The Nodejs API states...
By the very nature of how throw works in JavaScript, there is almost never any way to safely "pick up where you left off", without leaking references, or creating some other sort of undefined brittle state.
However Koa traps errors and avoids exiting the nodejs process. What enables Koa to safely flout this advice?