use strict; use Plack::Builder; { package MyApp; sub please_die { die "egad" } } my $app = sub { MyApp->please_die; [200, ['Content-type' => 'text/plain'], ['hello']] }; builder { enable 'StackTrace'; # enable 'HTTPExceptions', rethrow => 1; $app; };