#ProcessFriendlyException

##About

Represents a method that produces more user-friendly output when a report has errors. This will be rendered to the web browser.

##C# Example

public override Control ProcessFriendlyException(Exception exception)
{
	return new LiteralControl("exception occurred "  + exception.Message);
}

##VB.NET Example

Public Overrides Function ProcessFriendlyException(exception As Exception) As Control
        Return New LiteralControl("exception occurred " + exception.Message)
End Function