Izenda Logo

This documentation is for the legacy Izenda 6 product. Documentation for the new Izenda 7 product can be found at https://www.izenda.com/docs/

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