<?php class FooBar { public function __get($text) { throw new \Exception(); } } try { $foobar = new FooBar(); $foobar->hello; } catch (\Exception $e) { var_dump($e); }
You have javascript disabled. You will not be able to edit any code.