Where can I find a list of error codes and their meaning for SharePoint exceptions? I can not find any list on the Internet, as well as specific cases here and there.
My particular need arises from the following scenario:
- REST Services for SharePoint 2013
- Update form request digest
I found that if my form request digest expires, I will get:
{ "error": { "code": "-2130575252, Microsoft.SharePoint.SPException", "message": { "lang": "en-US", "value": "The security validation for this page is invalid and might be corrupted. Please use your web browser Back button to try your operation again." } }
Great, I can just find the error code -2130575252, update my request digest and try it again, right? Well, maybe ... I was left wondering in what other scenario can this error code be used? What other error codes might indicate a similar situation? With a little documentation on the error code, I felt more confident that this was the only error that an outdated request would produce. Alas, where is the documentation?
source share