Blog

Victor Campos

November 18, 2025

Spread the word


Share your thoughts

Are you tired of staring at endless, unreadable stack traces when exceptions hit your ColdBox app? There’s a better way to handle exceptions, especially during development, and it’s called Whoops!

Whoops offers a clean, interactive way to track and navigate exceptions in your ColdBox applications, making debugging much easier. Let’s dive into how you can enable it in your app.

Step 1: Enable Whoops in Development Mode

First, head over to your config/ColdBox.cfc file and look for the development() environment configuration. You’ll want to add the following setting to tell ColdBox to use Whoops for exception tracking

function development(){
    coldbox.customErrorTemplate = "/coldbox/system/exceptions/Whoops.cfm";
}

This tells ColdBox to trigger the Whoops UI whenever an exception is detected. You’ll get a beautiful, interactive stack trace to help you troubleshoot more effectively!

Step 2: What Does Whoops Do?

Whoops gives you a clean UI stack trace that allows you to:

  • Navigate each file in the stack.
  • Jump to the exact line number where the exception occurred.
  • Integrate with your IDE for instant editing of the problematic file!

No more scrolling through long, convoluted error logs—you can see exactly where things went wrong, and fix them faster.

Step 3: Configure Your IDE for Whoops

Whoops is even more powerful when it integrates directly with your IDE. By default, Whoops is set up for Visual Studio Code (vscode), but you can configure it to use a different editor if that’s your preference.

In the same development() block, add the following configuration to set your preferred IDE

function development(){
    coldbox.exceptionEditor = "vscode-insiders";
}

Here are some valid options for the exceptionEditor setting:

  • vscode (Default)
  • vscode-insiders
  • sublime
  • textmate
  • emacs
  • macvim
  • idea
  • atom
  • espresso

Pick your favorite, and Whoops will let you open the files and jump directly to the line number where the exception occurred!

Conclusion

By enabling Whoops and configuring your IDE, you’ll get a smoother, faster, and more enjoyable exception-tracking experience. Say goodbye to those frustrating debugging sessions and hello to a more streamlined development workflow!

Learn More ColdBox Tips and Tricks

Stay tuned for more ColdBox tips in our ongoing series. if you want to learn more than 10 free tips and tricks make sure to get your “ColdBox 102 tips and tricks book” We have a variety of formats you can choose from.

Get your Copy

Join the Ortus Community

Be part of the movement shaping the future of web development. Stay connected and receive the latest updates on, product launches, tool updates, promo services and much more.

Subscribe to our newsletter for exclusive content.

Follow Us on Social media and don’t miss any news and updates:

Add Your Comment

Recent Entries

BoxLang 1.17 Series Part 3 : Encrypted Config Secrets

BoxLang 1.17 Series Part 3 : Encrypted Config Secrets

Everyone knows the datasource password should not be sitting in plain text in a config file. Everyone has also, at some point, shipped exactly that, because the alternative was a pile of environment variable plumbing that nobody wanted to build on a deadline. x

Luis Majano
Luis Majano
September 08, 2026
BoxLang AI 3.4 Blog Series Part 3 : Batched Approvals

BoxLang AI 3.4 Blog Series Part 3 : Batched Approvals

Here's a bug that's easy to miss until it bites someone in production: an agent turn asks for two tool calls at once, both need human approval, and only the first one actually suspends. The second one gets silently skipped. Not rejected, not queued, just gone. That's what happened before 3.4.0, and it's fixed now with batched tool-call approvals.

Luis Majano
Luis Majano
September 08, 2026
Getting Started with BoxLang as an Alternative CFML Engine

Getting Started with BoxLang as an Alternative CFML Engine

If you have an existing ColdFusion or Lucee application, one of the first questions you may have about BoxLang is probably not:

“Should I rewrite my application in BoxLang?”

It is much simpler:

“Can BoxLang run the CFML application I already have?”

That was the focus of veteran CFML troubleshooter Charlie Arehart’s session at Into the Box 2026, Getting Started with BoxLang as an Alternative CFML Engine.

Cristobal Escobar
Cristobal Escobar
September 08, 2026