Search code examples
c#.netsharepoint

Where are situated all SharePoint server error codes descriptions?


During execution the code belowe Microsoft.SharePoint.Client.ServerException with ServerErrorCode = -2147024894 has been thrown. But I don't know any information about this code. May be you know where I can find the correspondence between SP ServerErrorCodes and their descriptions ?

private SP.Folder GetFolderByRelativeUrl(string folderRelativePath)
{
    var folder = _spClientContext.SpContext.Web.GetFolderByServerRelativeUrl(folderRelativePath);
    _spClientContext.SpContext.Load(folder);
    _spClientContext.SpContext.ExecuteQuery(); // here exception is thrown
    return folder;
}

MSDN has no information about codes' descriptions.


UPDATED:

Full description

Microsoft.SharePoint.Client.ServerException: File Not Found.
   at Microsoft.SharePoint.Client.ClientRequest.ProcessResponseStream(Stream responseStream)
   at Microsoft.SharePoint.Client.ClientRequest.ProcessResponse()
   ...

Solution

  • Finally, by chance I've found.

    SharePoint server erros codes