<?php class Foo extends Exception { protected $code = 100; protected $message = 'Hello'; protected int $line = 45; protected string $file = '/path/to/file.php'; } try { throw new Foo(); } catch (Foo $e) { var_dump($e); }
You have javascript disabled. You will not be able to edit any code.