Cannot catch the SharePoint Access denied error - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T23:54:35Zhttp://stackoverflow.com/feeds/question/724679http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/724679/cannot-catch-the-sharepoint-access-denied-error2Cannot catch the SharePoint Access denied errorashwnacharya2009-04-07T08:43:58Z2009-04-07T12:23:23Z
<p>I am trying to access a sharepoint list programmatically in a webpart, like this.</p>
<pre><code>try
{
masterList = web.Lists[listId];
}
catch(Exception e)
{
RenderExceptionMessage(e.Message);
}
</code></pre>
<p>The RenderExceptionMessage() method is supposed to show a user-friendly error message inside the webpart.</p>
<p>But the problem is that I am not able to trap the Exception. Instead the webpart page redirects to an access denied page which shows an error message "You are currently signed in as: Domain\user"</p>
<p>Also, the message of the exception being caught reads "Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack."</p>
<p>Any idea why this behaves this way?</p>
http://stackoverflow.com/questions/724679/cannot-catch-the-sharepoint-access-denied-error/725008#7250083Answer by Paul-Jan for Cannot catch the SharePoint Access denied errorPaul-Jan2009-04-07T10:33:28Z2009-04-07T10:33:28Z<p>By default, SharePoint has custom handling for access denied exceptions (including the redirect to the custom page) within page/webservice requests, bypassing the excepton handling in your code. </p>
<p>To disable this custom handling, set <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsecurity.catchaccessdeniedexception.aspx" rel="nofollow">SPSecurity.CatchAccessDeniedException</a> to false. </p>
http://stackoverflow.com/questions/724679/cannot-catch-the-sharepoint-access-denied-error/725426#7254261Answer by Kirk Liemohn for Cannot catch the SharePoint Access denied errorKirk Liemohn2009-04-07T12:23:23Z2009-04-07T12:23:23Z<p>Maybe another way to handle this is to add some defensive programming such as a check to make sure the user has access to the SPWeb and/or SPList. Off the top of my head I think that SPWeb.EnsureUser can help. SPList.CheckPermissions or SPList.DoesUserHavePermissions may help as well.</p>