<?php function test() { try { throw new \RuntimeException('Test 1'); } catch (\RuntimeException $e) { throw new \RuntimeException('Test 2'); } finally { return 'finally'; } } echo test();
You have javascript disabled. You will not be able to edit any code.