Thansk to this code in TaskResult class the Coroutine just queitly dies when exception occours in Task.
protected virtual void OnCompleted(Task task)
{
Completed(this, new ResultCompletionEventArgs { WasCancelled = task.IsCanceled, Error = task.Exception });
}
OnUnhandledException in bootstrapper isnt called either