When we roll out to production, we want to make sure the errors produced by Composite C1 aren't seen by users. This is an example of a forced Exception thrown by an MVC Function test that is rendered directly in the page.
The following is in the web.config
<customErrors mode="On" defaultRedirect="/Errors/Site-Error">
<error statusCode="404" redirect="/Errors/Page-Not-Found" /> </customErrors>
<compilation debug="false" optimizeCompilations="false" targetFramework="4.6">
Thank you