Tasks are very impressive once you manage to wrap your head around a few concepts. One subject I’d like to cover in this post is how to deal with exceptions in tasks. There are a few pitfalls one must not fall into when dealing with exception handling in tasks. First you must remember that each task is responsible for its own error checking or error handling. Tasks that do not handle their exceptions will crash your application. How can you avoid that? Continuations to the rescue! There is a concept ......