I'm trying to use this package with Laravel, but I can't catch an exception. How to do that correctly? ``` php public function render($request, Exception $e) { if ($e instanceof DomainException) { return 'Caught!'; } return parent::render($request, $e); } ```