I’d like to get a list of all the Azure Table errors and figure out a clean way to handle them in a try...catch block.
For example, I’d like to not have to directly code and compare the InnerException message to String.Contains("The specified entity already exists"). What is the right way to trap these errors?

Here is code that is provided in the Azure Table Whitepaper, but I’m not sure if this gives any value over smark’s reply.
–