useTracy\Debugger;try{$this->someOperation();}catch(\Exception$e){Debugger::log($e->getMessage(),Debugger::EXCEPTION);die();//to halt execution}
The problem is that die() results in a blank white page, when an
exception happens. Is it instead possible to halt further code-execution, and
also display the common Tracy error-page?