<?php set_exception_handler(?callable $callback): ?callable
<?php echo 'never'; }); set_exception_handler(function (Exception $e) { echo 'Uncaught error occured' . PHP_EOL; Loop::stop(); }); throw new RuntimeException();