Skip to main content
All CollectionsColdFusion
Per-Application Robust Exception Information
Per-Application Robust Exception Information
Updated over 2 months ago

How to enable and disable Robust Exception Information

Robust exception information can be critical in resolving an exception being thrown within ColdFusion on your website. This feature is meant to point you to the specific aspect of your application that is throwing the exception. In this article, I will go over whats required to enable Robust Exception information on a Per-Application basis.

This is accomplished by accessing your site’s ‘Application.cfc’ configuration file and implementing the following code:


You can disable Robust Exceptions by change the “true” value to “false”.

If your website does not utilize an Application.cfc configuration file then you will need to create one and implement the following code:







Please Note: On Windows, detailed errors will need to be enabled within your site’s IIS settings in order to see the output of the server's robust exception information.

Did this answer your question?