SharePoint Exception Documentation
I am wondering where I can find some information about the exceptions that are thrown by the SharePoint object model. Unfortunately, the MSDN documentation is not very helpful in this regard, as the documentation of many methods lacks information on what exceptions can be thrown, in which case they will be thrown.
So where do you get information about exceptions from?
a source to share
Unfortunately, the best answer is it depends. Many times I will start by searching Google for the text of the error.
If you are looking for a general list of possible exclusions that SharePoint has thrown, you will be very disappointed. I don't know anything about him.
Over time, you will learn patterns that will help you.
For example, one common exception I've seen is "FileNotFound". This usually happens if I ask SharePoint to open an SPWeb or SPList that doesn't exist.
a source to share