1. Whoops

Whoops is an error handler framework for PHP. Out-of-the-box, it provides a pretty error interface that helps you debug your web projects, but at heart it’s a simple yet powerful stacked error handling system.

1.1. Usage

1) Add the dependency:

Maven
Gradle
<dependency>
  <groupId>io.jooby</groupId>
  <artifactId>jooby-whoops</artifactId>
  <version>3.0.10</version>
</dependency>

2) Install Whoops

Java
Kotlin
import io.jooby.whoops.WhoopsModule;

{
  install(new WhoopsModule());                      (1)

  get("/{id}", ctx -> {
    return ctx.path("id").intValue();               (2)
  });
}
1 Install Whoops
2 Write some exceptional code (see next section)

1.2. Test

To test whoops we need to generate an exception. Our route is expecting to get an integer for the id variable.

Whoops in Action
Figure 1. Whoops in Action

1.3. How it works

Whoops only display application frames. That is:

A stacktrace element where we are able to find the source code. The whole stacktrace is available in the application log/console.

Whoops does nothing if there is no source code. An example of this is a 404 request:

Not Found
message: Page not found
status code: 404

The 404 error is generated by Jooby, not by application code. So whoops let the next exception handler (which is the default here) to deal with the exception.

If there is no source code to shows, whoops does nothing.

If you have custom error handler just add them before whoops (or after). Remember whoops works like any other Error Handler.

1.4. Production deploy

Because whoops only works with source code, whoops won’t ever run in production deployment (unless you deploy with source code).

Still whoops is enabled and will try to find source code in the current application directory.

A better option is to set whoops.enabled = false in your application properties file. This will completely turn off whoops.